diff options
author | Hiroyuki Ikezoe <poincare@ikezoe.net> | 2006-07-08 07:53:23 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-07-08 07:53:23 +0800 |
commit | 91a5d904960bf14d001d5592ec886700c6a762b0 (patch) | |
tree | 6f673d3819f84921e421c58ad11c7e75ba93822e /filter | |
parent | 7d3f08b618650378aee7208ef08f1b03c70402a6 (diff) | |
download | gsoc2013-evolution-91a5d904960bf14d001d5592ec886700c6a762b0.tar.gz gsoc2013-evolution-91a5d904960bf14d001d5592ec886700c6a762b0.tar.zst gsoc2013-evolution-91a5d904960bf14d001d5592ec886700c6a762b0.zip |
** Fixes bug #341369
2006-07-07 Hiroyuki Ikezoe <poincare@ikezoe.net>
** Fixes bug #341369
* filter/rule-editor.c:
* plugins/exchange-operations/exchange-calendar.c:
* plugins/exchange-operations/exchange-contacts.c:
* plugins/save-attachments/save-attachments.c:
fixing memory leaks.
svn path=/trunk/; revision=32256
Diffstat (limited to 'filter')
-rw-r--r-- | filter/ChangeLog | 5 | ||||
-rw-r--r-- | filter/rule-editor.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 20493e5ffc..bcf6854679 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,8 @@ +2006-07-07 Hiroyuki Ikezoe <poincare@ikezoe.net> + + ** Fixes bug #341369 + * rule-editor.c: fixing a memory leak. + 2006-02-24 Shi Pu <shi.pu@sun.com> ** Fixes Bug #323853 diff --git a/filter/rule-editor.c b/filter/rule-editor.c index b10b00f7d5..9a24089ff4 100644 --- a/filter/rule-editor.c +++ b/filter/rule-editor.c @@ -742,6 +742,8 @@ rule_editor_treeview_new (char *widget_name, char *string1, char *string2, int i gtk_widget_show (scrolled); gtk_widget_show (table); + + g_object_unref (model); return scrolled; } |