aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-11-06 02:42:00 +0800
committerMilan Crha <mcrha@redhat.com>2013-11-06 02:42:00 +0800
commit55601f56e5043ea3d86b84bd07c9a2e8a30fe467 (patch)
tree322e8af31e9daa962c1d0f7bcb9435a42d951f67 /calendar
parent7377016416772a7d3f7c87c39abe9131faaf9a63 (diff)
downloadgsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar
gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar.gz
gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar.bz2
gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar.lz
gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar.xz
gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar.zst
gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.zip
Fix an issue found by Coverity Scan introduced by a commit for bug #657808
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/e-calendar-selector.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-calendar-selector.c b/calendar/gui/e-calendar-selector.c
index b588c6a107..c134d299a4 100644
--- a/calendar/gui/e-calendar-selector.c
+++ b/calendar/gui/e-calendar-selector.c
@@ -314,11 +314,11 @@ calendar_selector_data_dropped (ESourceSelector *selector,
GdkDragAction action,
guint info)
{
- icalcomponent *icalcomp;
+ icalcomponent *icalcomp = NULL;
EActivity *activity;
EShellBackend *shell_backend;
EShellView *shell_view;
- ESource *source;
+ ESource *source = NULL;
ESourceRegistry *registry;
GCancellable *cancellable;
gchar **segments;