diff options
author | Federico Mena Quintero <federico@redhat.com> | 1999-10-21 00:37:21 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-10-21 00:37:21 +0000 |
commit | 04823f40c43c3db621c66d25b17113faa7f1fbf3 (patch) | |
tree | ae831634e6af05df5b71c4b478968f4f70e74827 /gdk-pixbuf/gdk-pixbuf-io.c | |
parent | b1c28ea6561e1ba494dfacf114e6c2dda36829b8 (diff) | |
download | gtk+-04823f40c43c3db621c66d25b17113faa7f1fbf3.tar.gz |
Free path.
1999-10-20 Federico Mena Quintero <federico@redhat.com>
* src/gdk-pixbuf-io.c (image_handler_load): Free path.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-io.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c index 6e873a53dd..42a06c3c4f 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.c +++ b/gdk-pixbuf/gdk-pixbuf-io.c @@ -166,6 +166,7 @@ image_handler_load (int idx) g_free (module_name); module = g_module_open (path, G_MODULE_BIND_LAZY); + g_free (path); if (!module) { g_warning ("Unable to load module: %s", path); return; |