summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBJ Weschke <bweschke@btwtech.com>2006-05-25 14:32:15 +0000
committerBJ Weschke <bweschke@btwtech.com>2006-05-25 14:32:15 +0000
commit6cfaaf9ac064ed0704673b1769b488ec9825cb43 (patch)
tree2bfa7c4a18302ac0a63a3ecae5ccebd1deb3d1fb
parent36cf242f31f2d71e8551ffaa683f23e31252431f (diff)
Properly initialize destination variables before we send them into pbx_substitute_variables_helper(..). Ya! Testing! Take 2.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@30216 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_queue.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index d42f20e85..15e123a64 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2365,6 +2365,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
}
}
+ memset(tmpid, 0, sizeof(tmpid));
pbx_substitute_variables_helper(qe->chan, tmpid2, tmpid, sizeof(tmpid) - 1);
}
@@ -2378,6 +2379,8 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
*p = '$';
}
}
+
+ memset(meid, 0, sizeof(meid));
pbx_substitute_variables_helper(qe->chan, meid2, meid, sizeof(meid) - 1);
}