evolution-data-server r8476 - in trunk/calendar: . backends/groupwise



Author: pchen
Date: Mon Feb 11 07:14:33 2008
New Revision: 8476
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=8476&view=rev

Log:
2008-02-11  Chenthill Palanisamy  <pchenthill novell com>
   
        Fixes #515696
        * backends/groupwise/e-cal-backend-groupwise-utils.c:
        (e_gw_connection_get_freebusy_info): Do not free use
        free_attendee_list, just free the gslist alone.



Modified:
   trunk/calendar/ChangeLog
   trunk/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c

Modified: trunk/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
==============================================================================
--- trunk/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c	(original)
+++ trunk/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c	Mon Feb 11 07:14:33 2008
@@ -1764,7 +1764,9 @@
 		attendee_list = g_slist_append (attendee_list, &attendee);
 
 		e_cal_component_set_attendee_list (comp, attendee_list);
-		e_cal_component_free_attendee_list (attendee_list);
+		g_slist_free (attendee_list);
+		g_free ((char *) name);
+		g_free ((char *) email);
 
 		param_blocks = soup_soap_parameter_get_first_child_by_name (subparam, "blocks");
 		if (!param_blocks) {



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