summaryrefslogtreecommitdiff
path: root/main/features.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2012-06-18 22:56:01 +0000
committerKinsey Moore <kmoore@digium.com>2012-06-18 22:56:01 +0000
commitd73a1de0b1c9a210e389109d6873408c606b0e1a (patch)
tree784bd90dd4e8992007de95e1c49413c336265fd9 /main/features.c
parentc30cc8fbd5a090ccefa0780601609be085f024f1 (diff)
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
Diffstat (limited to 'main/features.c')
-rw-r--r--main/features.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/main/features.c b/main/features.c
index ff56757dc..3a813cd2d 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;