From: Russell Bryant Date: Sun, 29 Mar 2009 05:51:55 +0000 (+0000) Subject: Ensure targs variable is fully initialized. X-Git-Tag: 1.4.25-rc1~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23de13f3da9df3489350af4c9a409fd2348a594c;p=thirdparty%2Fasterisk.git Ensure targs variable is fully initialized. (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 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index b5bb5588ca..4b6d433fcf 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -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;