diff options
author | Chris Toshok <toshok@ximian.com> | 2003-02-17 17:01:16 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-02-17 17:01:16 +0800 |
commit | 510e56ebfe46248c3dde85b5555ccf03835fa1a1 (patch) | |
tree | f0064f92431b49bec032569100f7aefa48a7a05d | |
parent | 3d2724cc41df1e2862f3296e28fa6c5fb10652e4 (diff) | |
download | gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.tar gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.tar.gz gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.tar.bz2 gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.tar.lz gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.tar.xz gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.tar.zst gsoc2013-evolution-510e56ebfe46248c3dde85b5555ccf03835fa1a1.zip |
plug memory leak - free path.
2003-02-17 Chris Toshok <toshok@ximian.com>
* e-shortcuts.c (load_shortcuts): plug memory leak - free path.
svn path=/trunk/; revision=19922
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shortcuts.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 69104e466b..0cf9b331fa 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2003-02-17 Chris Toshok <toshok@ximian.com> + + * e-shortcuts.c (load_shortcuts): plug memory leak - free path. + 2003-02-13 Ettore Perazzoli <ettore@ximian.com> [Ported SIGSEGV signal redirection hack from mail/.] diff --git a/shell/e-shortcuts.c b/shell/e-shortcuts.c index 6ac47bf66b..b950f2ce44 100644 --- a/shell/e-shortcuts.c +++ b/shell/e-shortcuts.c @@ -369,6 +369,7 @@ load_shortcuts (EShortcuts *shortcuts, xmlFree (icon); } + g_free (path); xmlFree (uri); } |