mod_proxy_ajp: Avoid delivering content from a previous request which
failed to send a request body. PR 46949 [Ruediger Pluem]
+ *) core: Return APR_EOF if request body is shorter than the length announced
+ by the client. PR 33098 [ Stefan Fritsch <sf sfritsch.de>]
+
*) mod_suexec: correctly set suexec_enabled when httpd is run by a
non-root user and may have insufficient permissions.
PR 42175 [Jim Radford <radford blackbean.org>]
-
+
*) mod_ssl: Fix SSL_*_DN_UID variables to use the 'userID' attribute
type. PR 45107. [Michael Ströder <michael stroeder.com>,
Peter Sylvester <peter.sylvester edelweb.fr>]
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,