[svn-commits] russell: branch 1.4 r184842 - /branches/1.4/apps/app_followme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Mar 29 00:51:59 CDT 2009


Author: russell
Date: Sun Mar 29 00:51:55 2009
New Revision: 184842

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184842
Log:
Ensure targs variable is fully initialized.

(closes issue #14758)
Reported by: tim_ringenbach

Modified:
    branches/1.4/apps/app_followme.c

Modified: branches/1.4/apps/app_followme.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/apps/app_followme.c?view=diff&rev=184842&r1=184841&r2=184842
==============================================================================
--- branches/1.4/apps/app_followme.c (original)
+++ branches/1.4/apps/app_followme.c Sun Mar 29 00:51:55 2009
@@ -942,7 +942,7 @@
 
 static int app_exec(struct ast_channel *chan, void *data)
 {
-	struct fm_args targs;
+	struct fm_args targs = { 0, };
 	struct ast_bridge_config config;
 	struct call_followme *f;
 	struct number *nm, *newnm;




More information about the svn-commits mailing list