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);