1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

fixed a small memleak when unloading module

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1843 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-10-15 18:37:13 +00:00 committed by cras
parent 8c5ac3fb24
commit 16247b8c34

View File

@ -396,6 +396,7 @@ void module_unload(MODULE_REC *module)
while (module->files != NULL)
module_file_unload(module->files->data);
g_free(module->name);
g_free(module);
}