projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d86f76c
)
Fix a memory leak in GtkImage
author
Dan Vrátil
<dvratil@redhat.com>
Wed, 20 Jun 2012 06:26:14 +0000
(08:26 +0200)
committer
Dan Vrátil
<dvratil@redhat.com>
Wed, 20 Jun 2012 06:27:01 +0000
(08:27 +0200)
https://bugzilla.gnome.org/show_bug.cgi?id=678175
gtk/gtkimage.c
patch
|
blob
|
history
diff --git
a/gtk/gtkimage.c
b/gtk/gtkimage.c
index 87285e1ca40f863c6a4fde0b86a03036bfc03f51..5e6458c6ed8e15573c419e0906ba63201dd74eb8 100644
(file)
--- a/
gtk/gtkimage.c
+++ b/
gtk/gtkimage.c
@@
-365,6
+365,8
@@
gtk_image_finalize (GObject *object)
g_clear_object (&image->priv->icon_helper);
+ g_free (image->priv->filename);
+
G_OBJECT_CLASS (gtk_image_parent_class)->finalize (object);
};