diff options
author | Milan Crha <mcrha@redhat.com> | 2009-07-28 02:55:30 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-07-28 02:55:30 +0800 |
commit | 3818a6404a4b413f35b008a24c98155ab3cfe2b4 (patch) | |
tree | d8d9c620ad31d8ceb7e07b25a45e10519d8910d9 /calendar/gui | |
parent | f2de8f314001d607eb3ec174ad45eacd98acb749 (diff) | |
download | gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.gz gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.zst gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.zip |
Compiler warning fixes (as part of bug #424078)
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/itip-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index a23146f118..1de0ed56d6 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -1341,8 +1341,8 @@ reply_to_calendar_comp (ECalComponentItipMethod method, ECalComponent *comp = NULL; icalcomponent *top_level = NULL; GList *users = NULL; - gchar *from; - gchar *subject; + gchar *from = NULL; + gchar *subject = NULL; gchar *ical_string = NULL; gboolean retval = FALSE; |