diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-12-08 00:16:11 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-12-08 00:16:11 +0800 |
commit | dbd0b894c29ae2903b97dab4ee920badea62f074 (patch) | |
tree | 1e3200bbcac176d8fc7221828daa05f24f8c1eac /calendar/cal-client | |
parent | 247998098826dca3eff39e40ffeda623144b6737 (diff) | |
download | gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.tar gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.tar.gz gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.tar.bz2 gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.tar.lz gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.tar.xz gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.tar.zst gsoc2013-evolution-dbd0b894c29ae2903b97dab4ee920badea62f074.zip |
Unref the component from the objects list; it got referenced as many times
2000-12-07 Federico Mena Quintero <federico@helixcode.com>
* cal-client/cal-client.c (cal_client_generate_instances): Unref
the component from the objects list; it got referenced as many
times as appropriate for the instances list.
svn path=/trunk/; revision=6836
Diffstat (limited to 'calendar/cal-client')
-rw-r--r-- | calendar/cal-client/cal-client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/calendar/cal-client/cal-client.c b/calendar/cal-client/cal-client.c index 99dd96710b..a75912275f 100644 --- a/calendar/cal-client/cal-client.c +++ b/calendar/cal-client/cal-client.c @@ -1126,6 +1126,7 @@ cal_client_generate_instances (CalClient *client, CalObjType type, comp = l->data; cal_recur_generate_instances (comp, start, end, add_instance, &instances); + gtk_object_unref (GTK_OBJECT (comp)); } g_list_free (objects); |