diff options
-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); } |