Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 20986 invoked from network); 3 Oct 2006 15:07:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Oct 2006 15:07:49 -0000 Received: (qmail 78121 invoked by uid 500); 3 Oct 2006 15:07:48 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 78080 invoked by uid 500); 3 Oct 2006 15:07:48 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 78011 invoked by uid 99); 3 Oct 2006 15:07:48 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Oct 2006 08:07:48 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:52302] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 82/D1-08153-3CC72254 for ; Tue, 03 Oct 2006 08:07:47 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id BE9A01A981A; Tue, 3 Oct 2006 08:07:45 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r452527 - in /apr/apr/trunk: CHANGES poll/unix/kqueue.c Date: Tue, 03 Oct 2006 15:07:45 -0000 To: commits@apr.apache.org From: rooneg@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061003150745.BE9A01A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rooneg Date: Tue Oct 3 08:07:44 2006 New Revision: 452527 URL: http://svn.apache.org/viewvc?view=rev&rev=452527 Log: Fix PR 40662. Submitted by: Larry Cipriani * poll/unix/kqueue.c (apr_pollset_create): Fix error checking. * CHANGES: Note change. Modified: apr/apr/trunk/CHANGES apr/apr/trunk/poll/unix/kqueue.c Modified: apr/apr/trunk/CHANGES URL: http://svn.apache.org/viewvc/apr/apr/trunk/CHANGES?view=diff&rev=452527&r1=452526&r2=452527 ============================================================================== --- apr/apr/trunk/CHANGES (original) +++ apr/apr/trunk/CHANGES Tue Oct 3 08:07:44 2006 @@ -1,4 +1,7 @@ Changes for APR 1.3.0 + *) Fix error checking in kqueue version of apr_pollset_create. + PR 40662 [Larry Cipriani lvc lucent.com] + *) Add some documentation on the format matched by apr_fnmatch. [David Glasser ] Modified: apr/apr/trunk/poll/unix/kqueue.c URL: http://svn.apache.org/viewvc/apr/apr/trunk/poll/unix/kqueue.c?view=diff&rev=452527&r1=452526&r2=452527 ============================================================================== --- apr/apr/trunk/poll/unix/kqueue.c (original) +++ apr/apr/trunk/poll/unix/kqueue.c Tue Oct 3 08:07:44 2006 @@ -75,7 +75,7 @@ if (flags & APR_POLLSET_THREADSAFE && ((rv = apr_thread_mutex_create(&(*pollset)->ring_lock, APR_THREAD_MUTEX_DEFAULT, - p) != APR_SUCCESS))) { + p)) != APR_SUCCESS)) { *pollset = NULL; return rv; }