summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/libecal/e-cal.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index d0928b5fe..e71abed40 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-04 Rodrigo Moya <rodrigo@ximian.com>
+
+ * libecal/e-cal.c (open_async): g_object_unref the ECal, not the
+ ECalAsyncData structure.
+
2004-02-03 Rodney Dawes <dobey@ximian.com>
* backends/http/e-cal-backend-http.c: Don't keep a global SoupMessage
diff --git a/calendar/libecal/e-cal.c b/calendar/libecal/e-cal.c
index 82804c386..41b74ea28 100644
--- a/calendar/libecal/e-cal.c
+++ b/calendar/libecal/e-cal.c
@@ -1555,7 +1555,7 @@ open_async (gpointer data)
g_clear_error (&error);
- g_object_unref (ccad);
+ g_object_unref (ccad->ecal);
g_free (ccad);
return FALSE;