mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-18 18:46:16 +00:00
ensure that TRANSFERSTATUS can return FAILURE (issue #5146)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6542 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -90,10 +90,11 @@ static int transfer_exec(struct ast_channel *chan, void *data)
|
|||||||
|
|
||||||
res = ast_transfer(chan, dest);
|
res = ast_transfer(chan, dest);
|
||||||
|
|
||||||
if (!res) {
|
if (res < 0) {
|
||||||
status = "FAILURE";
|
status = "FAILURE";
|
||||||
if (option_priority_jumping)
|
if (option_priority_jumping)
|
||||||
ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
|
ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
|
||||||
|
res = 0;
|
||||||
} else {
|
} else {
|
||||||
status = "SUCCESS";
|
status = "SUCCESS";
|
||||||
res = 0;
|
res = 0;
|
||||||
|
Reference in New Issue
Block a user