aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/migration.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-01-27 07:24:32 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-01-27 07:24:32 +0800
commit89da6bdfcea2f6573a88720ad454444fd294198e (patch)
tree9e6d8b37b53e608f4b7455ddc46642c2ba168eb6 /calendar/gui/migration.c
parent190eb88cdc6438875a4434030c60346480cf89b1 (diff)
downloadgsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.tar
gsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.tar.gz
gsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.tar.bz2
gsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.tar.lz
gsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.tar.xz
gsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.tar.zst
gsoc2013-evolution-89da6bdfcea2f6573a88720ad454444fd294198e.zip
get the source name with out using freed memory (migrate_tasks): ditto
2004-01-27 JP Rosevear <jpr@ximian.com> * gui/migration.c (migrate_calendars): get the source name with out using freed memory (migrate_tasks): ditto svn path=/trunk/; revision=24453
Diffstat (limited to 'calendar/gui/migration.c')
-rw-r--r--calendar/gui/migration.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c
index 6ce155f239..9cb04167b2 100644
--- a/calendar/gui/migration.c
+++ b/calendar/gui/migration.c
@@ -526,7 +526,7 @@ migrate_calendars (CalendarComponent *component, int major, int minor, int revis
if (!strcmp (l->data, local_cal_folder))
source_name = g_strdup (_("Personal"));
else
- source_name = get_source_name (on_this_computer, (char*)l->data + strlen (path) + 1);
+ source_name = get_source_name (on_this_computer, (char*)l->data);
if (!migrate_ical_folder (l->data, on_this_computer, source_name, E_CAL_SOURCE_TYPE_EVENT))
retval = FALSE;
@@ -613,7 +613,7 @@ migrate_tasks (TasksComponent *component, int major, int minor, int revision)
if (!strcmp (l->data, local_task_folder))
source_name = g_strdup (_("Personal"));
else
- source_name = get_source_name (on_this_computer, (char*)l->data + strlen (path) + 1);
+ source_name = get_source_name (on_this_computer, (char*)l->data);
if (!migrate_ical_folder (l->data, on_this_computer, source_name, E_CAL_SOURCE_TYPE_TODO))
retval = FALSE;