Fix: issue #112 follow-ups — OTR strip, presence UAF, OMEMO load #130

Manually merged
jabber.developer merged 6 commits from fix/issue-112-followups into master 2026-06-20 10:30:41 +00:00
19 changed files with 209 additions and 45 deletions
Showing only changes of commit a4e6419faf - Show all commits

View File

@@ -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

Why is it even defined out of loop scope? We can move it inside of the for body for readability.

Why is it even defined out of loop scope? We can move it inside of the `for` body for readability.
gboolean result = TRUE;
for (i = 1; i <= strlen(dir); i++) {