[asterisk-commits] chan local: Fix hangupcauses not getting set on Local channels (asterisk[11])

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Apr 11 18:18:18 CDT 2016


Anonymous Coward #1000019 has submitted this change and it was merged.

Change subject: chan_local: Fix hangupcauses not getting set on Local channels
......................................................................


chan_local: Fix hangupcauses not getting set on Local channels

ASTERISK-25912 #close

Change-Id: I9ec0d40bd0e8ff16ba9c3cfc4c1b52cc575f421b
---
M channels/chan_local.c
1 file changed, 7 insertions(+), 0 deletions(-)

Approvals:
  Richard Mudgett: Looks good to me, but someone else must approve
  Anonymous Coward #1000019: Verified
  Joshua Colp: Looks good to me, approved



diff --git a/channels/chan_local.c b/channels/chan_local.c
index 562c181..423ca4c 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -785,6 +785,13 @@
 			ast_debug(4, "Blocked indication %d\n", condition);
 		}
 		ao2_unlock(p);
+
+		/*
+		 * we need to return -1 here so that asterisk core will correctly set up hangupcauses.
+		 */
+		if (condition == AST_CONTROL_PVT_CAUSE_CODE) {
+			res = -1;
+		}
 	}
 
 	ao2_ref(p, -1);

-- 
To view, visit https://gerrit.asterisk.org/2568
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I9ec0d40bd0e8ff16ba9c3cfc4c1b52cc575f421b
Gerrit-PatchSet: 2
Gerrit-Project: asterisk
Gerrit-Branch: 11
Gerrit-Owner: Jaco Kroon <jaco at uls.co.za>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Richard Mudgett <rmudgett at digium.com>



More information about the asterisk-commits mailing list