[svn-commits] rmudgett: trunk r223911 - /trunk/res/res_calendar.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 13 12:11:09 CDT 2009


Author: rmudgett
Date: Tue Oct 13 12:11:05 2009
New Revision: 223911

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=223911
Log:
Fix compiler warning.

Modified:
    trunk/res/res_calendar.c

Modified: trunk/res/res_calendar.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_calendar.c?view=diff&rev=223911&r1=223910&r2=223911
==============================================================================
--- trunk/res/res_calendar.c (original)
+++ trunk/res/res_calendar.c Tue Oct 13 12:11:05 2009
@@ -625,7 +625,7 @@
 static void *do_notify(void *data)
 {
 	struct ast_calendar_event *event = data;
-	struct ast_dial *dial;
+	struct ast_dial *dial = NULL;
 	struct ast_str *apptext = NULL;
 	struct ast_datastore *datastore;
 	enum ast_dial_result res;




More information about the svn-commits mailing list