diff options
author | Milan Crha <mcrha@redhat.com> | 2013-03-25 21:57:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-03-25 21:57:01 +0800 |
commit | 4b03f11c4c795e14d4041bb79048521f12891ee4 (patch) | |
tree | 4287b0f6a5a629cb2fcd8e8e6b6bc6c80a36b219 /shell | |
parent | 1c35d94851adfab4340464376118eea4d964fc8d (diff) | |
download | gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.tar gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.tar.gz gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.tar.bz2 gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.tar.lz gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.tar.xz gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.tar.zst gsoc2013-evolution-4b03f11c4c795e14d4041bb79048521f12891ee4.zip |
Bug #696173 - Various memory leaks
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-searchbar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shell-searchbar.c b/shell/e-shell-searchbar.c index 262b082d6c..5795407d0d 100644 --- a/shell/e-shell-searchbar.c +++ b/shell/e-shell-searchbar.c @@ -940,6 +940,8 @@ shell_searchbar_get_preferred_width (GtkWidget *widget, } } + g_list_free (children); + *minimum_width = max_minimum + COLUMN_SPACING; *natural_width = max_natural + COLUMN_SPACING; } |