From: Guenter Knauf Date: Sun, 4 Oct 2009 20:18:51 +0000 (+0000) Subject: no declarations after statements. X-Git-Tag: 2.3.3~203 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0a0d085b484e05afaaef8f7e9334f93a9781278;p=apache no declarations after statements. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@821599 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 20ff6a6e38..1697a7d9fd 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1302,8 +1302,9 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_content_length_filter( * 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);