1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Destroy hash table ein autocompleters_destroy()

Regards https://github.com/profanity-im/profanity/issues/1019
This commit is contained in:
Michael Vetter 2019-10-06 17:29:35 +02:00
parent 10f2715ea9
commit 57ebb7cfa6

View File

@ -206,4 +206,7 @@ autocompleters_reset(void)
void autocompleters_destroy(void)
{
g_hash_table_destroy(plugin_to_acs);
g_hash_table_destroy(plugin_to_filepath_acs);
plugin_to_acs = NULL;
plugin_to_filepath_acs = NULL;
}