From: Russell Bryant Date: Sun, 29 Mar 2009 05:52:59 +0000 (+0000) Subject: Merged revisions 184843 via svnmerge from X-Git-Tag: 1.6.1.0-rc4~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9ff7bad9245bedf4d65e9b0d7415dabad090c08;p=thirdparty%2Fasterisk.git Merged revisions 184843 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r184843 | russell | 2009-03-29 00:52:20 -0500 (Sun, 29 Mar 2009) | 13 lines 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/branches/1.6.1@184845 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index 45297b0092..5e85b4ef91 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -899,7 +899,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;