diff options
author | Ignacio Casal Quinteiro <nacho.resa@gmail.com> | 2008-12-26 03:45:12 +0800 |
---|---|---|
committer | Ignacio Casal Quinteiro <icq@src.gnome.org> | 2008-12-26 03:45:12 +0800 |
commit | 657b235cc2fec97f3ba361238478f1eeeaf903b6 (patch) | |
tree | 689df9f49fc2e17aa3ff10eee68e8b4bce892c84 | |
parent | 3aa08c35ade396d6f9efadcd85a8abd50afa16bd (diff) | |
download | gsoc2013-evolution-657b235cc2fec97f3ba361238478f1eeeaf903b6.tar.gz gsoc2013-evolution-657b235cc2fec97f3ba361238478f1eeeaf903b6.tar.zst gsoc2013-evolution-657b235cc2fec97f3ba361238478f1eeeaf903b6.zip |
Fix memory leak. (Fixes bug #565628).
2008-12-25 Ignacio Casal Quinteiro <nacho.resa@gmail.com>
* shell/main.c:
Fix memory leak. (Fixes bug #565628).
svn path=/trunk/; revision=36932
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | shell/main.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-12-25 Ignacio Casal Quinteiro <nacho.resa@gmail.com> + + * shell/main.c: + Fix memory leak. (Fixes bug #565628). + 2008-12-22 Matthew Barnes <mbarnes@redhat.com> * configure.in: diff --git a/shell/main.c b/shell/main.c index 81155975bc..3e1176e92a 100644 --- a/shell/main.c +++ b/shell/main.c @@ -537,6 +537,8 @@ set_paths (void) g_warning ("Could not set PATH for Evolution and its child processes"); g_free (path); + g_free (exe_folder_utf8); + g_free (components_folder_utf8); /* Set BONOBO_ACTIVATION_PATH */ if (g_getenv ("BONOBO_ACTIVATION_PATH" ) == NULL) { |