[asterisk-commits] rmudgett: branch 1.8 r339776 - /branches/1.8/apps/app_url.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Oct 7 14:34:58 CDT 2011


Author: rmudgett
Date: Fri Oct  7 14:34:55 2011
New Revision: 339776

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=339776
Log:
Initialize option flags for SendURL application.

(closes issue ASTERISK-18574)
Reported by: marcelloceschia

Modified:
    branches/1.8/apps/app_url.c

Modified: branches/1.8/apps/app_url.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_url.c?view=diff&rev=339776&r1=339775&r2=339776
==============================================================================
--- branches/1.8/apps/app_url.c (original)
+++ branches/1.8/apps/app_url.c Fri Oct  7 14:34:55 2011
@@ -101,7 +101,7 @@
 	struct ast_frame *f;
 	char *status = "FAILURE";
 	char *opts[0];
-	struct ast_flags flags;
+	struct ast_flags flags = { 0 };
 	AST_DECLARE_APP_ARGS(args,
 		AST_APP_ARG(url);
 		AST_APP_ARG(options);




More information about the asterisk-commits mailing list