mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Free strings in autocomplete_param_no_with_func
Regards https://github.com/profanity-im/profanity/issues/1019
This commit is contained in:
parent
94b401ab96
commit
9b3517c21e
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user