dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 61914 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r61914 | kpfleming | 2007-04-25 17:29:53 -0500 (Wed, 25 Apr 2007) | 10 lines

Merged revisions 61913 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r61913 | kpfleming | 2007-04-25 17:24:59 -0500 (Wed, 25 Apr 2007) | 2 lines

handle a very bizarre race condition with channels being redirected before a simple switch can be started on them (issue #9286)

........

................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@61915 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2007-04-25 22:34:58 +00:00
parent 6e9e81b3d6
commit 5ddf59b5b3
1 changed files with 9 additions and 0 deletions

View File

@ -5744,6 +5744,15 @@ static void *ss_thread(void *data)
int res;
int index;
/* in the bizarre case where the channel has become a zombie before we
even get started here, abort safely
*/
if (!p) {
ast_log(LOG_WARNING, "Channel became a zombie before simple switch could be started (%s)\n", chan->name);
ast_hangup(chan);
return NULL;
}
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "Starting simple switch on '%s'\n", chan->name);
index = zt_get_index(chan, p, 1);