-*- coding: utf-8 -*-
Changes with Apache 2.4.34
+ *) mod_proxy_html: Fix variable interpolation and memory allocation failure
+ in ProxyHTMLURLMap. [Ewald Dieterich <ewald mailbox.org>]
+
*) mod_remoteip: Fix RemoteIP{Trusted,Internal}ProxyList loading broken by 2.4.30.
PR 62220. [Chritophe Jaillet, Yann Ylavic]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) mod_proxy_html: Fix variable interpolation and memory allocation failure
- in ProxyHTMLURLMap. PR 62344.
- trunk patch: http://svn.apache.org/r1830746
- 2.4.x patch: svn merge -c 1830746 ^/httpd/httpd/trunk .
- (trunk works modulo CHANGES))
- +1: ylavic, jailletc36, jim
-
*) http: Fix small memory leak per request when handling persistent connections
trunk patch: http://svn.apache.org/r1833014
2.4.x patch: trunk works (modulo CHANGES)
break;
delim = ap_strchr_c(start, '|');
+
+ /* Restrict delim to ${...} */
+ if (delim && delim >= end) {
+ delim = NULL;
+ }
+
before = apr_pstrndup(r->pool, str, start-str);
after = end+1;
if (delim) {