summaryrefslogtreecommitdiff
path: root/pbx
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2015-01-30 16:47:50 +0000
committerMark Michelson <mmichelson@digium.com>2015-01-30 16:47:50 +0000
commit43dd42d8aeee1eff844f605544901016047348e2 (patch)
treeb22def97513a57f91e7d241f9a7adb497d617471 /pbx
parentf7d23dfcc62c5491956570614365eb7ca39a7655 (diff)
Fix some memory leaks.
These memory leaks were found and fixed by John Hardin. I'm just committing them for him. ASTERISK-24736 #close Reported by Mark Michelson Review: https://reviewboard.asterisk.org/r/4389 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@431468 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_spool.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c
index adec3b26a..119ab08b8 100644
--- a/pbx/pbx_spool.c
+++ b/pbx/pbx_spool.c
@@ -377,14 +377,12 @@ static void *attempt_thread(void *data)
res = ast_pbx_outgoing_app(o->tech, o->capabilities, o->dest, o->waittime * 1000,
o->app, o->data, &reason, 2 /* wait to finish */, o->cid_num, o->cid_name,
o->vars, o->account, NULL, NULL);
- o->vars = NULL;
} else {
ast_verb(3, "Attempting call on %s/%s for %s@%s:%d (Retry %d)\n", o->tech, o->dest, o->exten, o->context,o->priority, o->retries);
res = ast_pbx_outgoing_exten(o->tech, o->capabilities, o->dest,
o->waittime * 1000, o->context, o->exten, o->priority, &reason,
2 /* wait to finish */, o->cid_num, o->cid_name, o->vars, o->account, NULL,
ast_test_flag(&o->options, SPOOL_FLAG_EARLY_MEDIA), NULL);
- o->vars = NULL;
}
if (res) {
ast_log(LOG_NOTICE, "Call failed to go through, reason (%d) %s\n", reason, ast_channel_reason2str(reason));