You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2009/10/04 22:18:51 UTC

svn commit: r821599 - /httpd/httpd/trunk/server/protocol.c

Author: fuankg
Date: Sun Oct  4 20:18:51 2009
New Revision: 821599

URL: http://svn.apache.org/viewvc?rev=821599&view=rev
Log:
no declarations after statements.

Modified:
    httpd/httpd/trunk/server/protocol.c

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=821599&r1=821598&r2=821599&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Sun Oct  4 20:18:51 2009
@@ -1302,8 +1302,9 @@
                  * do a blocking read on the next batch.
                  */
                 if (e != APR_BRIGADE_FIRST(b)) {
+                    apr_bucket *flush;
                     apr_brigade_split_ex(b, e, ctx->tmpbb);
-                    apr_bucket *flush = apr_bucket_flush_create(r->connection->bucket_alloc);
+                    flush = apr_bucket_flush_create(r->connection->bucket_alloc);
 
                     APR_BRIGADE_INSERT_TAIL(b, flush);
                     rv = ap_pass_brigade(f->next, b);