Plug a small memory leak

svn path=/trunk/; revision=21451
This commit is contained in:
Matthias Clasen 2008-09-19 14:34:22 +00:00
parent 6b812e7770
commit 661fbdfa26
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-09-19 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-io.c: Don't call fill_info if we've already filled
the info from the module file, fixes a small memory leak.
2008-09-18 Dominic Lachowicz <domlachowicz@gmail.com>
* io-gdip-utils.c: Fix 2 cases where we leaked a GpImage (#552545)

View File

@ -678,9 +678,10 @@ gdk_pixbuf_load_module_unlocked (GdkPixbufModule *image_module,
if (fill_vtable) {
image_module->module = (void *) 1;
(* fill_vtable) (image_module);
image_module->info = g_new0 (GdkPixbufFormat, 1);
(* fill_info) (image_module->info);
if (image_module->info == NULL) {
image_module->info = g_new0 (GdkPixbufFormat, 1);
(* fill_info) (image_module->info);
}
return TRUE;
}
else