summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-04-16 14:03:43 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-04-16 14:03:43 +0000
commit577b740f1797ad758d1f006d739acbf43e15733d (patch)
tree342a1cdb39ef7862848d7b63cacbc3ed82c84e3e
parent5afbcc4f868d73ca3624dda53684caea70d4652c (diff)
add a missing ast_channel_unlock() evidenced by previous commits.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20477 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 8850dd52d..06548b2ae 100644
--- a/channel.c
+++ b/channel.c
@@ -1905,9 +1905,9 @@ static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio)
if (chan->fds[AST_GENERATOR_FD] > -1 && chan->fdno == AST_GENERATOR_FD) {
void *tmp = chan->generatordata;
chan->generatordata = NULL; /* reset to let ast_write get through */
- /* XXX don't we miss an ast_channel_unlock(chan); here ? */
chan->generator->generate(chan, tmp, -1, -1);
chan->generatordata = tmp;
+ ast_channel_unlock(chan);
return &ast_null_frame;
}