Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 5612 invoked from network); 10 Mar 2007 06:22:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Mar 2007 06:22:29 -0000 Received: (qmail 88233 invoked by uid 500); 10 Mar 2007 06:22:38 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 88199 invoked by uid 500); 10 Mar 2007 06:22:37 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 88188 invoked by uid 99); 10 Mar 2007 06:22:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Mar 2007 22:22:37 -0800 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Mar 2007 22:22:28 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7C2CE1A9838; Fri, 9 Mar 2007 22:22:08 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r516656 - /httpd/apreq/trunk/library/util.c Date: Sat, 10 Mar 2007 06:22:08 -0000 To: apreq-cvs@httpd.apache.org From: randyk@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070310062208.7C2CE1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: randyk Date: Fri Mar 9 22:22:07 2007 New Revision: 516656 URL: http://svn.apache.org/viewvc?view=rev&rev=516656 Log: VC++ on Win32 likes declaration of variables before assignments. Modified: httpd/apreq/trunk/library/util.c Modified: httpd/apreq/trunk/library/util.c URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/library/util.c?view=diff&rev=516656&r1=516655&r2=516656 ============================================================================== --- httpd/apreq/trunk/library/util.c (original) +++ httpd/apreq/trunk/library/util.c Fri Mar 9 22:22:07 2007 @@ -1124,8 +1124,8 @@ apr_status_t s; apr_bucket *e, *first; int n = 0; - *wlen = 0; apr_bucket_brigade *tmp = bb; + *wlen = 0; if (BUCKET_IS_SPOOL(APR_BRIGADE_LAST(bb))) { tmp = apr_brigade_create(bb->p, bb->bucket_alloc);