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
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);
}