diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-09-09 21:26:38 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-09-09 21:26:38 +0800 |
commit | 6ab15e6412651bdd888d919f4e38395412928cc3 (patch) | |
tree | cb3862604d72b0967a2718866fb85df05430d296 /calendar | |
parent | 3848fcae0a1e3b2a272e083f30eb57f41e34831a (diff) | |
download | gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.gz gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.zst gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.zip |
Fix uninitialized variable in cal_comp_is_on_server().
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/comp-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/comp-util.c b/calendar/gui/comp-util.c index 8ad8bd54f9..be6721164c 100644 --- a/calendar/gui/comp-util.c +++ b/calendar/gui/comp-util.c @@ -222,7 +222,7 @@ cal_comp_is_on_server (ECalComponent *comp, { const gchar *uid; gchar *rid = NULL; - icalcomponent *icalcomp; + icalcomponent *icalcomp = NULL; GError *error = NULL; g_return_val_if_fail (comp != NULL, FALSE); |