From: Russell Bryant Date: Sun, 29 Mar 2009 05:52:20 +0000 (+0000) Subject: Merged revisions 184842 via svnmerge from X-Git-Tag: 11.0.0-beta1~5161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47c3799c9922e39c4129e0a7127d61fc9d828917;p=thirdparty%2Fasterisk.git Merged revisions 184842 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r184842 | russell | 2009-03-29 00:51:55 -0500 (Sun, 29 Mar 2009) | 5 lines Ensure targs variable is fully initialized. (closes issue #14758) Reported by: tim_ringenbach ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@184843 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index 0bd6e2e5f6..457545661f 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -998,7 +998,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;