the fix for bug #6399 makes sense. thanks wrmem for the report.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17753 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo
2006-04-06 08:02:35 +00:00
parent d75fed39ca
commit e57131511e

View File

@@ -1599,7 +1599,8 @@ struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds,
for (x=0; x<n; x++)
ast_clear_flag(c[x], AST_FLAG_BLOCKING);
if (res < 0) { /* Simulate a timeout if we were interrupted */
*ms = (errno != EINTR) ? -1 : 0;
if (errno != EINTR)
*ms = -1;
return NULL;
}
if (whentohangup) { /* if we have a timeout, check who expired */