mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Plug a small memory leak
svn path=/trunk/; revision=21451
This commit is contained in:
parent
6b812e7770
commit
661fbdfa26
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user