[asterisk-commits] twilson: trunk r342716 - in /trunk: ./ res/res_calendar.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Oct 29 21:31:05 CDT 2011
Author: twilson
Date: Sat Oct 29 21:31:02 2011
New Revision: 342716
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=342716
Log:
Don't crash on empty notify channel
........
Merged revisions 342715 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/res/res_calendar.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/res/res_calendar.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_calendar.c?view=diff&rev=342716&r1=342715&r2=342716
==============================================================================
--- trunk/res/res_calendar.c (original)
+++ trunk/res/res_calendar.c Sat Oct 29 21:31:02 2011
@@ -694,7 +694,7 @@
{
struct ast_calendar_event *event = data;
struct ast_dial *dial = NULL;
- struct ast_str *apptext = NULL, *tmpstr;
+ struct ast_str *apptext = NULL, *tmpstr = NULL;
struct ast_datastore *datastore;
enum ast_dial_result res;
struct ast_channel *chan = NULL;
More information about the asterisk-commits
mailing list