]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Ensure targs variable is fully initialized.
authorRussell Bryant <russell@russellbryant.com>
Sun, 29 Mar 2009 05:51:55 +0000 (05:51 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sun, 29 Mar 2009 05:51:55 +0000 (05:51 +0000)
(closes issue #14758)
Reported by: tim_ringenbach

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@184842 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_followme.c

index b5bb5588cabcff492d15a61246194000021843bd..4b6d433fcf1cc2ced21744684d1be6ef5ee9eeaa 100644 (file)
@@ -942,7 +942,7 @@ static void end_bridge_callback_data_fixup(struct ast_bridge_config *bconfig, st
 
 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;