Proposed by: Ewald Dieterich <ewald mailbox.org>
Reviewed by: ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1830746 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.5.1
+ *) mod_proxy_html: Fix variable interpolation and memory allocation failure
+ in ProxyHTMLURLMap. [Ewald Dieterich <ewald mailbox.org>]
+
*) core: In ONE_PROCESS/debug mode, cleanup everything when exiting.
[Yann Ylavic]
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) {