Fix: issue #112 follow-ups — OTR strip, presence UAF, OMEMO load #130
@@ -119,7 +119,7 @@ _create_dir(const char* name)
|
||||
gboolean
|
||||
_mkdir_recursive(const char* dir)
|
||||
{
|
||||
int i;
|
||||
size_t i;
|
||||
|
jabber.developer marked this conversation as resolved
Outdated
|
||||
gboolean result = TRUE;
|
||||
|
||||
for (i = 1; i <= strlen(dir); i++) {
|
||||
|
||||
Reference in New Issue
Block a user
Why is it even defined out of loop scope? We can move it inside of the
forbody for readability.