Changes with Apache 2.4.11
+ *) mod_dav: Set r->status_line in dav_error_response. PR 55426.
+
*) SECURITY: CVE-2014-3581 (cve.mitre.org)
mod_cache: Avoid a crash when Content-Type has an empty value.
PR 56924. [Mark Montague <mark catseye.org>, Jan Kaluza]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_dav: set r->status_line in dav_error_response.
- It's used as argument in next ap_rvputs call. PR 55426.
- trunk patch: http://svn.apache.org/r1527509
- 2.4.x patch: trunk works
- +1: jkaluza, ylavic, rjung
-
* mod_proxy: Make worker name truncation a non-fatal error.
trunk patch: http://svn.apache.org/r1621367
http://svn.apache.org/r1621372
static int dav_error_response(request_rec *r, int status, const char *body)
{
r->status = status;
+ r->status_line = ap_get_status_line(status);
ap_set_content_type(r, "text/html; charset=ISO-8859-1");