From d73a1de0b1c9a210e389109d6873408c606b0e1a Mon Sep 17 00:00:00 2001
From: Kinsey Moore <kmoore@digium.com>
Date: Mon, 18 Jun 2012 22:56:01 +0000
Subject: [PATCH] Fix AST_CONTROL_PVT_CAUSE_CODE handling

When the IAX2 Who Hung Up? changes were added, they uncovered a bug in
the way AST_CONTROL_PVT_CAUSE_CODE was handled in
feature_request_and_dial().  This particular frame subtype was being
treated like more terminal control frames causing the function to be
exited prematurely.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369061 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 main/features.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/main/features.c b/main/features.c
index ff56757dc0..3a813cd2d0 100644
--- a/main/features.c
+++ b/main/features.c
@@ -3939,8 +3939,6 @@ static struct ast_channel *feature_request_and_dial(struct ast_channel *caller,
 					break;
 				} else if (f->subclass.integer == AST_CONTROL_PVT_CAUSE_CODE) {
 					ast_indicate_data(caller, AST_CONTROL_PVT_CAUSE_CODE, f->data.ptr, f->datalen);
-					ast_frfree(f);
-					break;
 				} else if (f->subclass.integer == AST_CONTROL_CONNECTED_LINE) {
 					if (caller_hungup) {
 						struct ast_party_connected_line connected;
-- 
GitLab