Remove the file descriptors from the main poll channel when the channel is hung up during the dialing attempt, and make sure a channel exists before trying to remove it at the end.

(closes issue #11441)
Reported by: blitzrage


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@90508 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp 2007-12-03 14:14:43 +00:00
parent 0f5117be2e
commit 4201a5af8b
1 changed files with 7 additions and 2 deletions

View File

@ -646,6 +646,9 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in,
f = ast_read(winner);
if (!f) {
in->hangupcause = c->hangupcause;
#ifdef HAVE_EPOLL
ast_poll_channel_del(in, c);
#endif
ast_hangup(c);
c = o->chan = NULL;
ast_clear_flag64(o, DIAL_STILLGOING);
@ -852,8 +855,10 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in,
}
#ifdef HAVE_EPOLL
for (epollo = outgoing; epollo; epollo = epollo->next)
ast_poll_channel_del(in, epollo->chan);
for (epollo = outgoing; epollo; epollo = epollo->next) {
if (epollo->chan)
ast_poll_channel_del(in, epollo->chan);
}
#endif
return peer;