aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index 9d6007c64..5eb680d02 100755
--- a/channel.c
+++ b/channel.c
@@ -1126,6 +1126,12 @@ struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds,
#endif
}
return NULL;
+ } else {
+ /* If no fds signalled, then timeout. So set ms = 0
+ since we may not have an exact timeout.
+ */
+ if (res == 0)
+ *ms = 0;
}
if (havewhen)