aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_followme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-29 05:52:20 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-29 05:52:20 +0000
commit872c3dfb13e71d43140326f43eb7b553378fac47 (patch)
treec714ad3bf0dd74cc3adf4aad2d259f09dc33fce6 /apps/app_followme.c
parentedfa5ac696d7ed825154cc09df202c02841e9fa7 (diff)
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/trunk@184843 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 0bd6e2e5f..457545661 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;