Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 987 invoked from network); 9 Aug 2005 16:40:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Aug 2005 16:40:53 -0000 Received: (qmail 48896 invoked by uid 500); 9 Aug 2005 16:40:47 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 48842 invoked by uid 500); 9 Aug 2005 16:40:47 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 48819 invoked by uid 99); 9 Aug 2005 16:40:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Aug 2005 09:40:47 -0700 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [207.155.252.14] (HELO wellington.cnchost.com) (207.155.252.14) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Aug 2005 09:41:08 -0700 Received: from rcsv650.rowe-clan.net (c-24-13-128-132.hsd1.il.comcast.net [24.13.128.132]) by wellington.cnchost.com id MAA16864; Tue, 9 Aug 2005 12:40:41 -0400 (EDT) [ConcentricHost SMTP Relay 1.17] Errors-To: Message-Id: <6.2.1.2.2.20050809100222.06fd1b30@pop3.rowe-clan.net> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Tue, 09 Aug 2005 11:40:36 -0500 To: dev@httpd.apache.org From: "William A. Rowe, Jr." Subject: Re: svn commit: r230733 - /httpd/httpd/trunk/modules/proxy/mod_proxy_http.c Cc: dev@httpd.apache.org, cvs@httpd.apache.org In-Reply-To: <20050809093859.GB30302@redhat.com> References: <20050808025136.14373.qmail@minotaur.apache.org> <6.2.1.2.2.20050808004803.070542c0@pop3.rowe-clan.net> <20050809093859.GB30302@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N At 04:38 AM 8/9/2005, Joe Orton wrote: >Great, yes with last night's regression run the segfaults with worker >were gone and the tests are all passing for prefork and worker again on >the trunk - thanks a lot Bill. -Werror builds are failing though: > >mod_proxy_http.c: In function `ap_proxy_http_request': >mod_proxy_http.c:312: warning: 'status' might be used uninitialized in >this function Does this patch resolve status for your compiler's -Werror? (already committed to trunk, will hold off on proxyreq-2.0.x till I hear back.) --- httpd/httpd/trunk/modules/proxy/mod_proxy_http.c (original) +++ httpd/httpd/trunk/modules/proxy/mod_proxy_http.c Tue Aug 9 07:54:46 2005 @@ -949,7 +949,8 @@ || (bytes_read > 0)); break; default: - ap_assert(1 != 1); + /* shouldn't be possible */ + status = APR_EINVAL; break; }