diff options
-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) { |