1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

Free strings in autocomplete_param_no_with_func

Regards https://github.com/profanity-im/profanity/issues/1019
This commit is contained in:
Michael Vetter 2019-10-06 19:05:27 +02:00
parent 94b401ab96
commit 9b3517c21e

View File

@ -366,10 +366,17 @@ autocomplete_param_no_with_func(const char *const input, char *command, int arg_
result_str = g_string_new("");
g_string_append(result_str, start_str);
g_string_append(result_str, found);
free(start_str);
free(comp_str);
char *result = result_str->str;
g_string_free(result_str, FALSE);
return result;
}
} else {
free(start_str);
}
}
}