projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad5cfd8
)
avoid returning in the middle of a switch() in ast_answer()
author
Luigi Rizzo
<rizzo@icir.org>
Sun, 16 Apr 2006 15:22:13 +0000
(15:22 +0000)
committer
Luigi Rizzo
<rizzo@icir.org>
Sun, 16 Apr 2006 15:22:13 +0000
(15:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20512
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channel.c
patch
|
blob
|
history
diff --git
a/channel.c
b/channel.c
index
6a560cf
..
b760d10
100644
(file)
--- a/
channel.c
+++ b/
channel.c
@@
-1496,8
+1496,6
@@
int ast_answer(struct ast_channel *chan)
ast_setstate(chan, AST_STATE_UP);
if (chan->cdr)
ast_cdr_answer(chan->cdr);
- ast_channel_unlock(chan);
- return res;
break;
case AST_STATE_UP:
if (chan->cdr)
@@
-1505,7
+1503,7
@@
int ast_answer(struct ast_channel *chan)
break;
}
ast_channel_unlock(chan);
- return 0;
+ return res;
}
void ast_deactivate_generator(struct ast_channel *chan)