evolution-data-server r8446 - in trunk: camel/providers/groupwise servers/exchange servers/exchange/lib



Author: mcrha
Date: Wed Jan 30 18:52:00 2008
New Revision: 8446
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=8446&view=rev

Log:
2008-01-30  Milan Crha  <mcrha redhat com>

	** Part of fix for bug #395939

	* servers/exchange/lib/e2k-context.c: (dispose):
	* camel/providers/groupwise/camel-groupwise-store.c: (groupwise_forget_folder):
	Memory leak fix.



Modified:
   trunk/camel/providers/groupwise/ChangeLog
   trunk/camel/providers/groupwise/camel-groupwise-store.c
   trunk/servers/exchange/ChangeLog
   trunk/servers/exchange/lib/e2k-context.c

Modified: trunk/camel/providers/groupwise/camel-groupwise-store.c
==============================================================================
--- trunk/camel/providers/groupwise/camel-groupwise-store.c	(original)
+++ trunk/camel/providers/groupwise/camel-groupwise-store.c	Wed Jan 30 18:52:00 2008
@@ -480,7 +480,7 @@
 	name = folder_name;
 
 	storage_path = g_strdup_printf ("%s/folders", priv->storage_path);
-	folder_dir = g_strdup(e_path_to_physical (storage_path,folder_name));
+	folder_dir = e_path_to_physical (storage_path,folder_name);
 
 	if (g_access(folder_dir, F_OK) != 0) {
 		g_free(folder_dir);

Modified: trunk/servers/exchange/lib/e2k-context.c
==============================================================================
--- trunk/servers/exchange/lib/e2k-context.c	(original)
+++ trunk/servers/exchange/lib/e2k-context.c	Wed Jan 30 18:52:00 2008
@@ -180,6 +180,7 @@
 			g_object_unref (ctx->priv->async_session);
 
 		g_free (ctx->priv->cookie);
+		g_free (ctx->priv->notification_uri);
 
 		g_free (ctx->priv);
 		ctx->priv = NULL;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]