aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-09-09 21:26:38 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-09-09 21:26:38 +0800
commit6ab15e6412651bdd888d919f4e38395412928cc3 (patch)
treecb3862604d72b0967a2718866fb85df05430d296
parent3848fcae0a1e3b2a272e083f30eb57f41e34831a (diff)
downloadgsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar
gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.gz
gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.bz2
gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.lz
gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.xz
gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.tar.zst
gsoc2013-evolution-6ab15e6412651bdd888d919f4e38395412928cc3.zip
Fix uninitialized variable in cal_comp_is_on_server().
-rw-r--r--calendar/gui/comp-util.c2
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);