diff options
author | Milan Crha <mcrha@redhat.com> | 2009-04-25 02:41:00 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-04-25 02:41:00 +0800 |
commit | 65464532b52b16dfaf529208cfcc798ea303711a (patch) | |
tree | b9a3d7cc21f272a0367c98df6c875ce02cfcd4f6 | |
parent | 70fe80d69aec73ea1f4fa830b00ac603546e135d (diff) | |
download | gsoc2013-evolution-65464532b52b16dfaf529208cfcc798ea303711a.tar.gz gsoc2013-evolution-65464532b52b16dfaf529208cfcc798ea303711a.tar.zst gsoc2013-evolution-65464532b52b16dfaf529208cfcc798ea303711a.zip |
Possible leak fix
** Part of fix for bug #571272
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/e-cal-model.c | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index f461af6832..0885b506ae 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,11 @@ 2009-04-24 Milan Crha <mcrha@redhat.com> + ** Part of fix for bug #571272 + + * gui/e-cal-model.c: (search_by_id_and_client): Possible leak fix. + +2009-04-24 Milan Crha <mcrha@redhat.com> + ** Part of fix for bug #569652 * gui/calendar-component.c: (ensure_sources): diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 4fcfbd7609..ed4eb0f9dd 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -1336,10 +1336,13 @@ search_by_id_and_client (ECalModelPrivate *priv, ECal *client, const ECalCompone if (comp_data) { const char *uid; char *rid = NULL; + struct icaltimetype icalrid; gboolean has_rid = (id->rid && *id->rid); uid = icalcomponent_get_uid (comp_data->icalcomp); - rid = icaltime_as_ical_string_r (icalcomponent_get_recurrenceid (comp_data->icalcomp)); + icalrid = icalcomponent_get_recurrenceid (comp_data->icalcomp); + if (!icaltime_is_null_time (icalrid)) + rid = icaltime_as_ical_string_r (icalrid); if (uid && *uid) { if ((!client || comp_data->client == client) && !strcmp (id->uid, uid)) { @@ -1352,8 +1355,9 @@ search_by_id_and_client (ECalModelPrivate *priv, ECal *client, const ECalCompone g_free (rid); return comp_data; } - g_free (rid); } + + g_free (rid); } } |