From: Igor Goncharovskiy Date: Thu, 16 Oct 2014 06:07:18 +0000 (+0000) Subject: Fix loss of voice after second call drops (on a second line) in case using multiple... X-Git-Tag: 12.7.0-rc1~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d314cbf7b2f01433d0e76463acc334b4c2729718;p=thirdparty%2Fasterisk.git Fix loss of voice after second call drops (on a second line) in case using multiple lines on unistim phones. There is regression was introduced in r391379. Reported by: Rustam Khankishyiev (closes issue ASTERISK-23846) ........ Merged revisions 425667 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@425668 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_unistim.c b/channels/chan_unistim.c index eb2588c64a..411390d1a7 100644 --- a/channels/chan_unistim.c +++ b/channels/chan_unistim.c @@ -4822,18 +4822,20 @@ static int unistim_hangup(struct ast_channel *ast) } else if (sub->subtype == SUB_RING) { send_no_ring(s); for (i = 0; i < FAVNUM; i++) { - if (!soft_key_visible(s->device, i)) + if (!soft_key_visible(s->device, i)) { continue; - if (d->ssub[i] != sub) + } + if (d->ssub[i] != sub) { + if (d->ssub[i] != NULL) { /* Found other subchannel active other then hangup'ed one */ + end_call = 0; + } continue; + } if (is_key_line(d, i) && !strcmp(l->name, d->sline[i]->name)) { send_favorite_short(i, FAV_LINE_ICON, s); d->ssub[i] = NULL; continue; } - if (d->ssub[i] != NULL) { /* Found other subchannel active other then hangup'ed one */ - end_call = 0; - } } } if (end_call) {