diff options
author | tilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b> | 2010-04-13 19:20:50 +0000 |
---|---|---|
committer | tilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b> | 2010-04-13 19:20:50 +0000 |
commit | e13436cd37a28f77300f6a24e6b1092806620a6a (patch) | |
tree | 0bd095d0f0ce64ff26bfe4390662f3041bccec7d | |
parent | d4d5d8e8889d0c2affc6eff74fc87a5e563f3b61 (diff) |
Merged revisions 257191 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r257191 | tilghman | 2010-04-13 14:17:48 -0500 (Tue, 13 Apr 2010) | 10 lines
Also unref the pvt when we delete the provisional keepalive job.
(closes issue #16774)
Reported by: kowalma
Patches:
20100315__issue16774.diff.txt uploaded by tilghman (license 14)
Tested by: falves11, jamicque
Review: https://reviewboard.asterisk.org/r/591/
........
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@257208 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r-- | channels/chan_sip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c index fbef8abe1..1b6d4e3e7 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -5667,7 +5667,7 @@ static int sip_hangup(struct ast_channel *ast) } } else { /* Incoming call, not up */ const char *res; - AST_SCHED_DEL(sched, p->provisional_keepalive_sched_id); + AST_SCHED_DEL_UNREF(sched, p->provisional_keepalive_sched_id, dialog_unref(p, "when you delete the provisional_keepalive_sched_id, you should dec the refcount for the stored dialog ptr")); if (p->hangupcause && (res = hangup_cause2sip(p->hangupcause))) transmit_response_reliable(p, res, &p->initreq); else |