diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-10-16 22:45:04 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-10-16 22:45:04 +0800 |
commit | bb64d5dd741646b4e19c488c437b77297798237d (patch) | |
tree | cd87f6c751c369cefeb3977723f9cbaeb210f602 /shell | |
parent | 85de4c714e534cb6f7d497fe07b762fdde98468a (diff) | |
download | gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.gz gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.zst gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.zip |
Fixes #360815
svn path=/trunk/; revision=32897
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-window.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 24f493b1bc..cfffa2b615 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2006-10-16 Chris Heath <chris@heathens.co.nz> + + * e-shell-window.c (component_view_free): Fix memory leak. + Fixes bug #360815. + 2006-10-13 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #334966 diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 4e2d73f81b..f8ecc993e9 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -176,6 +176,7 @@ component_view_free (ComponentView *view) g_free (view->component_id); g_free (view->component_alias); + g_free (view->title); g_free (view); } |