summaryrefslogtreecommitdiff
path: root/res/res_pjsip_outbound_publish.c
diff options
context:
space:
mode:
authorAlexei Gradinari <alex2grad@gmail.com>2016-02-18 11:55:39 -0500
committerRichard Mudgett <rmudgett@digium.com>2016-02-18 12:04:56 -0600
commit14886643c669f8c154ee3ea646ffeffeddc91309 (patch)
tree41428b43c8dd5d0123ed0f822f61e8711b4086fb /res/res_pjsip_outbound_publish.c
parent62282bb8ce15e3e70b3e2fd79834c02911b5f8ff (diff)
res_pjsip_outbound_publish: Fix processing 412 response
When Asterisk receives a 412 (Conditional Request Failed) response it has to recreate publish session. There is bug in res_pjsip_outbound_publish.c The function sip_outbound_publish_client_alloc is called with wrong object while processing 412 (Conditional Request Failed) response. This patch fixes it. ASTERISK-25229 #close Change-Id: I3b62f2debf6bb1e5817cde7b13ea39ef2bf14359
Diffstat (limited to 'res/res_pjsip_outbound_publish.c')
-rw-r--r--res/res_pjsip_outbound_publish.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_pjsip_outbound_publish.c b/res/res_pjsip_outbound_publish.c
index a58bcbb91..856d84a7a 100644
--- a/res/res_pjsip_outbound_publish.c
+++ b/res/res_pjsip_outbound_publish.c
@@ -893,7 +893,7 @@ static void sip_outbound_publish_callback(struct pjsip_publishc_cbparam *param)
pjsip_publishc_destroy(client->client);
client->client = NULL;
- if (sip_outbound_publish_client_alloc(publish)) {
+ if (sip_outbound_publish_client_alloc(client)) {
ast_log(LOG_ERROR, "Failed to create a new outbound publish client for '%s' on 412 response\n",
ast_sorcery_object_get_id(publish));
goto end;