client.
PR: 33098
Submitted by: Stefan Fritsch <sf sfritsch.de>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@827514
13f79535-47bb-0310-9956-
ffa450edef68
- -*- coding: utf-8 -*-
+ -*- coding: utf-8 -*-
Changes with Apache 2.2.15
+ *) core: Return APR_EOF if request body is shorter than the length announced
+ by the client. PR 33098 [ Stefan Fritsch <sf sfritsch.de>]
+
*) mod_rewrite: Add scgi scheme detection. [André Malo]
*) mod_mime: Detect invalid use of MultiviewsMatch inside Location and
if (ctx->state != BODY_NONE) {
ctx->remaining -= totalread;
+ if (ctx->remaining > 0) {
+ e = APR_BRIGADE_LAST(b);
+ if (APR_BUCKET_IS_EOS(e))
+ return APR_EOF;
+ }
}
/* If we have no more bytes remaining on a C-L request,