diff options
author | Callum McKenzie <callum@src.gnome.org> | 2008-09-21 20:19:14 +0000 |
---|---|---|
committer | Callum McKenzie <callum@src.gnome.org> | 2008-09-21 20:19:14 +0000 |
commit | 7af07e138a17718913b466cb8cb2c18e1308e90d (patch) | |
tree | 81e9912f6077051ca097052ec26bee91ef0adb1a | |
parent | 2167ed2ee9f037f3da0915cd7345529e90344d30 (diff) |
Fix a memory leak (Matthias Clasen / bug 552577).
Fix a memory
leak (Matthias Clasen / bug 552577).
svn path=/trunk/; revision=11013
-rw-r--r-- | trashapplet/ChangeLog | 5 | ||||
-rw-r--r-- | trashapplet/src/trashapplet.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/trashapplet/ChangeLog b/trashapplet/ChangeLog index e4ee3e81c..64da0a7e1 100644 --- a/trashapplet/ChangeLog +++ b/trashapplet/ChangeLog @@ -1,3 +1,8 @@ +2008-09-22 Callum McKenzie <callum@spooky-possum.org> + + * src/trashapplet.c (trash_applet_monitor_changed): Fix a memory + leak (Matthias Clasen / bug 552577). + 2008-09-02 Callum McKenzie <callum@spooky-possum.org> * GNOME_Panel_TrashApplet.server.in.in: Patch from Alexander Jones diff --git a/trashapplet/src/trashapplet.c b/trashapplet/src/trashapplet.c index 8dd8421cc..91a937103 100644 --- a/trashapplet/src/trashapplet.c +++ b/trashapplet/src/trashapplet.c @@ -148,6 +148,7 @@ trash_applet_monitor_changed (TrashApplet *applet) } g_object_unref (icon); + g_object_unref (info); } static void |