diff options
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/itip-utils.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6e713e1ea7..8be481ef84 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2003-04-02 JP Rosevear <jpr@ximian.com> + + Fixes #39955 + + * gui/itip-utils.c (comp_sentby): don't unref the the account + 2003-04-02 Rodrigo Moya <rodrigo@ximian.com> Fixes #40661 diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index ea956f95bb..ab32ac79c1 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -625,7 +625,6 @@ comp_sentby (CalComponent *comp, CalClient *client) cal_component_set_organizer (comp, &organizer); g_free ((char *) organizer.value); - g_object_unref(a); return; } @@ -644,7 +643,6 @@ comp_sentby (CalComponent *comp, CalClient *client) g_free ((char *)organizer.sentby); g_free ((char *)organizer.cn); g_free ((char *)organizer.language); - g_object_unref(a); } } static CalComponent * |