Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 60960 invoked from network); 2 Oct 2006 16:58:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Oct 2006 16:58:34 -0000 Received: (qmail 50081 invoked by uid 500); 2 Oct 2006 16:58:32 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 50052 invoked by uid 500); 2 Oct 2006 16:58:32 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: "Apache HTTPD Bugs Notification List" List-Id: Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 50039 invoked by uid 99); 2 Oct 2006 16:58:32 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Oct 2006 09:58:32 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 Received: from [209.237.227.198] ([209.237.227.198:41215] helo=brutus.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 35/81-24395-83541254 for ; Mon, 02 Oct 2006 09:58:32 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id BCB167142E1; Mon, 2 Oct 2006 09:58:24 -0700 (PDT) From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: DO NOT REPLY [Bug 40660] New: - epoll.c, precedence problem at line 107 Message-ID: X-Bugzilla-Reason: AssignedTo Date: Mon, 2 Oct 2006 09:58:24 -0700 (PDT) X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=40660 Summary: epoll.c, precedence problem at line 107 Product: Apache httpd-2 Version: 2.2.0 Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Platform AssignedTo: bugs@httpd.apache.org ReportedBy: lvc@lucent.com httpd-2.2.3/srclib/apr/poll/unix/epoll.c: comparison takes precedence over assignment near line 107 if (flags & APR_POLLSET_THREADSAFE && ((rv = apr_thread_mutex_create(&(*pollset)->ring_lock, APR_THREAD_MUTEX_DEFAULT, p) != APR_SUCCESS))) { *pollset = NULL; return rv; } probably should be: if (flags & APR_POLLSET_THREADSAFE && ((rv = apr_thread_mutex_create(&(*pollset)->ring_lock, APR_THREAD_MUTEX_DEFAULT, p)) != APR_SUCCESS)) { *pollset = NULL; return rv; } -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org