diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/ephy-dialog.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2005-01-18 Christian Persch <chpe@cvs.gnome.org> + + * lib/ephy-dialog.c: (ephy_dialog_set_size_group): + + Fix mem leak. Fixes bug #164302. + 2005-01-16 Jean-François rameau <jframeau@cvs.gnome.org> * lib/ephy-node.h: diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c index 117424648..d6ec0e1ea 100644 --- a/lib/ephy-dialog.c +++ b/lib/ephy-dialog.c @@ -1178,6 +1178,8 @@ ephy_dialog_set_size_group (EphyDialog *dialog, } va_end (vl); + + g_object_unref (size_group); } void |