From: Kevin P. Fleming Date: Tue, 29 Apr 2008 18:58:48 +0000 (+0000) Subject: fix this logic to actually be correct... the fd can't be *both* -1 and an array index... X-Git-Tag: 1.6.2.0-beta1~2356 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc4390ac3702de3ad2f3436f25406b88a53dd5fe;p=thirdparty%2Fasterisk.git fix this logic to actually be correct... the fd can't be *both* -1 and an array index to be checked in rfds/efds (bug found by gcc-4.3) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114845 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/features.c b/main/features.c index a5aa645caa..528d32b195 100644 --- a/main/features.c +++ b/main/features.c @@ -2421,7 +2421,7 @@ int manage_parkinglot(struct ast_parkinglot *curlot, fd_set *rfds, fd_set *efds, for (x = 0; x < AST_MAX_FDS; x++) { struct ast_frame *f; - if ((chan->fds[x] == -1) && (!FD_ISSET(chan->fds[x], rfds) && !FD_ISSET(pu->chan->fds[x], efds))) + if ((chan->fds[x] == -1) || (!FD_ISSET(chan->fds[x], rfds) && !FD_ISSET(pu->chan->fds[x], efds))) continue; if (FD_ISSET(chan->fds[x], efds))