diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-07-27 05:03:06 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-07-27 05:03:06 +0800 |
commit | 3332eacac7d16b21f2442036960c22bbd3118b23 (patch) | |
tree | 407445fd373931bc796a188d1817c3aff308daf0 | |
parent | ed21f552bbad288dd7963f859df11870509cbc27 (diff) | |
download | gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.tar gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.tar.gz gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.tar.bz2 gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.tar.lz gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.tar.xz gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.tar.zst gsoc2013-evolution-3332eacac7d16b21f2442036960c22bbd3118b23.zip |
Teeny tiny mem leak fix.
svn path=/trunk/; revision=4366
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-storage.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 46aef4d286..bdfab07c57 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2000-07-26 Peter Williams <peterw@helixcode.com> + + * e-storage.c (e_storage_new_folder): Fix tiny mem leak. + 2000-07-26 Ettore Perazzoli <ettore@helixcode.com> * e-shell-view.c (disconnect_popup_signals): Disconnect the "map" diff --git a/shell/e-storage.c b/shell/e-storage.c index 7472b6badd..8963f85759 100644 --- a/shell/e-storage.c +++ b/shell/e-storage.c @@ -476,6 +476,7 @@ e_storage_new_folder (EStorage *storage, if (folder != NULL) { g_warning ("%s: Trying to add a subfolder for a path that already exists -- %s", __FUNCTION__, full_path); + g_free (full_path); return FALSE; } |