mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 08:11:21 +00:00
Fix double parking crash (bug #1302)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2645 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -575,11 +575,11 @@ static int park_exec(struct ast_channel *chan, void *data)
|
|||||||
were the person called. */
|
were the person called. */
|
||||||
if (option_verbose > 2)
|
if (option_verbose > 2)
|
||||||
ast_verbose(VERBOSE_PREFIX_3 "Channel %s connected to parked call %d\n", chan->name, park);
|
ast_verbose(VERBOSE_PREFIX_3 "Channel %s connected to parked call %d\n", chan->name, park);
|
||||||
res = ast_bridge_call(peer, chan, 1, 1, 0);
|
res = ast_bridge_call(chan, peer, 1, 1, 0);
|
||||||
/* Simulate the PBX hanging up */
|
/* Simulate the PBX hanging up */
|
||||||
if (res != AST_PBX_KEEPALIVE)
|
if (res != AST_PBX_NO_HANGUP_PEER)
|
||||||
ast_hangup(peer);
|
ast_hangup(peer);
|
||||||
return -1;
|
return res;
|
||||||
} else {
|
} else {
|
||||||
/* XXX Play a message XXX */
|
/* XXX Play a message XXX */
|
||||||
dres = ast_streamfile(chan, "pbx-invalidpark", chan->language);
|
dres = ast_streamfile(chan, "pbx-invalidpark", chan->language);
|
||||||
|
|||||||
Reference in New Issue
Block a user