From c0a0d085b484e05afaaef8f7e9334f93a9781278 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Sun, 4 Oct 2009 20:18:51 +0000 Subject: [PATCH] no declarations after statements. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@821599 13f79535-47bb-0310-9956-ffa450edef68 --- server/protocol.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.40.0