aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_followme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-29 05:51:55 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-29 05:51:55 +0000
commit679626aea361828de59b4d805f20d353072f2fb5 (patch)
tree1aba3e8513dc1ad799e8dd2ac893944b3f59b1a9 /apps/app_followme.c
parenta973661efac4371dde0d48922e4fdc8bedac225a (diff)
Ensure targs variable is fully initialized.
(closes issue #14758) Reported by: tim_ringenbach git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@184842 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_followme.c')
-rw-r--r--apps/app_followme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_followme.c b/apps/app_followme.c
index b5bb5588c..4b6d433fc 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;