summaryrefslogtreecommitdiffstats
path: root/eglib/gmodule.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-03-11 23:45:09 +0000
committerMarcel Holtmann <marcel@holtmann.org>2008-03-11 23:45:09 +0000
commite6bce39040a253c0bf62e26ab275e3cf307ed288 (patch)
tree1201d1356bc78084bd806c4e51e026413c4aac82 /eglib/gmodule.c
parent0ef72a5769f1c283786aa105d67127d6b113168c (diff)
Fix memory leaks and coding style in eglib
Diffstat (limited to 'eglib/gmodule.c')
-rw-r--r--eglib/gmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eglib/gmodule.c b/eglib/gmodule.c
index c3400823..7224a9f6 100644
--- a/eglib/gmodule.c
+++ b/eglib/gmodule.c
@@ -63,6 +63,7 @@ gboolean g_module_close(GModule *module)
return FALSE;
}
+ g_free(module->file_name);
g_free(module);
return TRUE;