summaryrefslogtreecommitdiff
path: root/res/res_pjsip_notify.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2013-08-06 12:39:27 +0000
committerJoshua Colp <jcolp@digium.com>2013-08-06 12:39:27 +0000
commit5b3441ae554997427cf905d84bb840e41c6ad143 (patch)
tree8353fa77bd52f56aa3a33f3647d4848daa667f80 /res/res_pjsip_notify.c
parent07d3705b42a157423ba11fca5e5b57ea1bf303c6 (diff)
Fix crash in res_pjsip_outbound_registration when the remote server can not be resolved.
This crash was caused by decrementing the reference count of a newly created message when it should not be. This change fixes that but also fixes all other cases where this was incorrectly done. (closes issue ASTERISK-22188) Reported by: Kinsey Moore git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396319 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip_notify.c')
-rw-r--r--res/res_pjsip_notify.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/res/res_pjsip_notify.c b/res/res_pjsip_notify.c
index 2f0cfd31a..c90a91b15 100644
--- a/res/res_pjsip_notify.c
+++ b/res/res_pjsip_notify.c
@@ -440,7 +440,6 @@ static int notify_contact(void *obj, void *arg, int flags)
data->build_notify(tdata, data->info);
if (ast_sip_send_request(tdata, NULL, data->endpoint)) {
- pjsip_tx_data_dec_ref(tdata);
ast_log(LOG_ERROR, "SIP NOTIFY - Unable to send request for "
"contact %s\n", contact->uri);
return -1;