aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-29 05:52:59 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-29 05:52:59 +0000
commit51e3a6fa7229fa8b21f7a4deecf235ec7926cc5f (patch)
treec6d05d3aa8b739a35a566f438f3ebeb5b89fbf08
parentf8488eedb069c0806d8afd067833b215a2c1c785 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.6.1@184845 f38db490-d61c-443f-a65b-d21fe96a405b
-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 45297b009..5e85b4ef9 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;