diff options
author | JP Rosevear <jpr@ximian.com> | 2003-04-02 23:57:22 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-04-02 23:57:22 +0800 |
commit | ae79ee48c227a3bc7f81468647cba836925a0557 (patch) | |
tree | fb1a1e9e4f9a5aa2376762de22065be772ed1661 | |
parent | 94deef1de6edba25d8b928c783627b0998da86f0 (diff) | |
download | gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.tar gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.tar.gz gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.tar.bz2 gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.tar.lz gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.tar.xz gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.tar.zst gsoc2013-evolution-ae79ee48c227a3bc7f81468647cba836925a0557.zip |
Fixes #39955
2003-04-02 JP Rosevear <jpr@ximian.com>
Fixes #39955
* gui/itip-utils.c (comp_sentby): don't unref the the account
svn path=/trunk/; revision=20641
-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 * |