diff options
Diffstat (limited to 'calendar/conduits')
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 4 | ||||
-rw-r--r-- | calendar/conduits/memo/memo-conduit.c | 2 | ||||
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index f423b56254..b37941aafd 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -842,7 +842,9 @@ local_record_to_pilot_record (ECalLocalRecord *local, g_assert (local->comp != NULL); g_assert (local->appt != NULL ); - + + memset (&p, 0, sizeof (GnomePilotRecord)); + p.ID = local->local.ID; p.category = local->local.category; p.attr = local->local.attr; diff --git a/calendar/conduits/memo/memo-conduit.c b/calendar/conduits/memo/memo-conduit.c index 8c43da6a38..74f323987d 100644 --- a/calendar/conduits/memo/memo-conduit.c +++ b/calendar/conduits/memo/memo-conduit.c @@ -478,6 +478,8 @@ local_record_to_pilot_record (EMemoLocalRecord *local, LOG (g_message ( "local_record_to_pilot_record\n" )); + memset (&p, 0, sizeof (GnomePilotRecord)); + p.ID = local->local.ID; p.category = local->local.category; p.attr = local->local.attr; diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 7ae7b32d2f..0594d53298 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -619,6 +619,8 @@ local_record_to_pilot_record (EToDoLocalRecord *local, LOG (g_message ( "local_record_to_pilot_record\n" )); + memset (&p, 0, sizeof (GnomePilotRecord)); + p.ID = local->local.ID; p.category = local->local.category; p.attr = local->local.attr; |