--- evolution-data-server/servers/groupwise/ChangeLog	2005-04-26 14:48:25.000000000 +0200
+++ evolution-data-server/servers/groupwise/ChangeLog	2005-05-03 21:20:30.000000000 +0200
@@ -1,3 +1,8 @@
+2005-05-03  Ulrich Neumann <uli@myuli.com>
+
+	* e-gw-sendoptions.c: Fixed two memory leaks in
+	  EGwSendOptionsStatusTracking().
+
 2005-04-26  Parthasarathi Susarla <sparthasarathi@novell.com>
 	* e-gw-item.[ch]: Reverting patch adding itemReference 
 	  in the EGwItemAttachment structure.
--- evolution-data-server/servers/groupwise/e-gw-sendoptions.c	2005-02-03 15:21:03.000000000 +0100
+++ evolution-data-server/servers/groupwise/e-gw-sendoptions.c	2005-05-03 02:53:06.000000000 +0200
@@ -468,7 +468,7 @@ set_status_tracking_changes (SoupSoapMes
 		comp_name = g_strconcat (comp, "StatusInfo", NULL);
 		e_gw_sendoptions_write_settings (msg, comp_name, value, NULL, TRUE);
 		g_free (comp_name), comp_name = NULL;
-		
+		g_free (value), value = NULL;
 	}
 		
 	if (!strcmp (comp, "mail")) {
@@ -480,6 +480,7 @@ set_status_tracking_changes (SoupSoapMes
 			comp_name = g_strconcat (comp, "AutoDelete", NULL);
 			e_gw_sendoptions_write_settings (msg, comp_name, value, NULL, TRUE);
 			g_free (comp_name), comp_name = NULL;
+			g_free (value), value = NULL;
 		}
 	}
 
