diff options
author | Milan Crha <mcrha@redhat.com> | 2013-11-12 15:46:44 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-11-12 15:46:44 +0800 |
commit | fd67d7a343e612003b05297f63dda166f2c86057 (patch) | |
tree | 3fd198fee7eba0fedd3012ab6581c4368784fda3 /modules/calendar | |
parent | 3c30fb17476059e2a30df110bf9842b2fecee634 (diff) | |
download | gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.tar gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.tar.gz gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.tar.bz2 gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.tar.lz gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.tar.xz gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.tar.zst gsoc2013-evolution-fd67d7a343e612003b05297f63dda166f2c86057.zip |
Fix some cppcheck warnings (uninitialized variable usages)
Diffstat (limited to 'modules/calendar')
-rw-r--r-- | modules/calendar/e-cal-shell-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 6a9bc1aac8..b43f3563c7 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -413,7 +413,7 @@ cal_shell_backend_handle_uri_cb (EShellBackend *shell_backend, gchar *comp_rid = NULL; GDate start_date; GDate end_date; - icaltimezone *zone; + icaltimezone *zone = NULL; gboolean handled = FALSE; GError *error = NULL; |