aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-04-28 16:46:44 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-04-28 16:46:44 +0800
commite61f6e8dede349d369cd2ce8254af02124a71f46 (patch)
tree7ed08a5ae1baeb19f35e5a09735dafbeb1de8a32
parent2f2d46490719eeb1b69463a157a52fc1093c7135 (diff)
downloadgsoc2013-evolution-e61f6e8dede349d369cd2ce8254af02124a71f46.tar.gz
gsoc2013-evolution-e61f6e8dede349d369cd2ce8254af02124a71f46.tar.zst
gsoc2013-evolution-e61f6e8dede349d369cd2ce8254af02124a71f46.zip
** Fix for bug #524121
2008-04-28 Milan Crha <mcrha@redhat.com> ** Fix for bug #524121 * gui/e-calendar-table.c: (copy_row_cb): Fixing typo from patch for bug #516408. svn path=/branches/gnome-2-22/; revision=35428
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/e-calendar-table.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 24301b9947..80a16f9c49 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2008-04-28 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #524121
+
+ * gui/e-calendar-table.c: (copy_row_cb):
+ Fixing typo from patch for bug #516408.
+
2008-04-25 Danny Baumann <dannybaumann@web.de>
** Fix for bug #529893
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index 8f5c5da9af..0cec2bf2df 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -881,7 +881,7 @@ copy_row_cb (int model_row, gpointer data)
icalcomponent_new_clone (child));
icalcomponent_free (child);
}
- g_free (child);
+ g_free (comp_str);
}
/**