summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-12-03 14:14:43 +0000
committerJoshua Colp <jcolp@digium.com>2007-12-03 14:14:43 +0000
commit4201a5af8b748563accba9d994184b6f25a64ec6 (patch)
treef029c97cdf05f68ee3ab13de17bf25b234316efc /apps
parent0f5117be2ec3fd0fa155bbddd2e8044eb218311a (diff)
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
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dial.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 265b49be7..a071f5e0f 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -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;