diff options
author | Milan Crha <mcrha@redhat.com> | 2013-11-06 02:42:00 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-11-06 02:42:00 +0800 |
commit | 55601f56e5043ea3d86b84bd07c9a2e8a30fe467 (patch) | |
tree | 322e8af31e9daa962c1d0f7bcb9435a42d951f67 /calendar | |
parent | 7377016416772a7d3f7c87c39abe9131faaf9a63 (diff) | |
download | gsoc2013-evolution-55601f56e5043ea3d86b84bd07c9a2e8a30fe467.tar.gz 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.c | 4 |
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; |