aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorTony Tsui <ttsui9@gmail.com>2004-09-20 15:59:24 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-09-20 15:59:24 +0800
commit1a080fd515acab5754342ca2350b4ff38053868a (patch)
treef7f3eb8aa85125d6626bc103f41bcd5fcab62b65 /calendar/gui
parent6abad9096931fcd677bcddbb7f9e49761a22857c (diff)
downloadgsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.tar
gsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.tar.gz
gsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.tar.bz2
gsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.tar.lz
gsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.tar.xz
gsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.tar.zst
gsoc2013-evolution-1a080fd515acab5754342ca2350b4ff38053868a.zip
Fixes #66174
2004-09-20 Tony Tsui <ttsui9@gmail.com> Fixes #66174 * gui/dialogs/meeting-page.c (existing_attendee): fixed memory leak. svn path=/trunk/; revision=27303
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/meeting-page.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c
index b72bee0f75..c721f474a8 100644
--- a/calendar/gui/dialogs/meeting-page.c
+++ b/calendar/gui/dialogs/meeting-page.c
@@ -619,8 +619,10 @@ existing_attendee (EMeetingAttendee *ia, ECalComponent *comp)
const char *address;
address = itip_strip_mailto (attendee->value);
- if (address && !g_strcasecmp (ia_address, address))
+ if (address && !g_strcasecmp (ia_address, address)) {
+ e_cal_component_free_attendee_list (attendees);
return TRUE;
+ }
}
e_cal_component_free_attendee_list (attendees);