summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-08-31 17:30:46 +0000
committerMark Spencer <markster@digium.com>2004-08-31 17:30:46 +0000
commit1db964ad9571f2bb3803e8f9006c4b0046e46548 (patch)
treecdda2465107a8cc4b54ce2bafb543bf95f02971c /channel.c
parent416079db61e735792623f6ebbaa15955764d2c4f (diff)
When queueing frames, it's pointless to queue a frame after a HANGUP frame is queued...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3697 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index f770b98d6..5c3b4a137 100755
--- a/channel.c
+++ b/channel.c
@@ -383,6 +383,12 @@ int ast_queue_frame(struct ast_channel *chan, struct ast_frame *fin)
prev = NULL;
cur = chan->pvt->readq;
while(cur) {
+ if ((cur->frametype == AST_FRAME_CONTROL) && (cur->subclass == AST_CONTROL_HANGUP)) {
+ /* Don't bother actually queueing anything after a hangup */
+ ast_frfree(f);
+ ast_mutex_unlock(&chan->lock);
+ return 0;
+ }
prev = cur;
cur = cur->next;
qlen++;