Changes with Apache 2.4.19
+ *) core: fix a bug in <UnDefine ...> directive processing. When used, the last
+ <Define...>'ed variable was also withdrawn. PR 59019
+ [Christophe Jaillet]
+
*) mod_http2: Accept-Encoding is, when present on the initiating request,
added to push promises. This lets compressed content work in pushes.
by the client. [Stefan Eissing]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) core: Fix a bug in <UnDefine ...> directive processing. When used, the
- last <Define...>'ed variable was also withdrawn. PR 59019
- Trunk patch:
- http://svn.apache.org/r1732716
- 2.4.x patch:
- Trunk version of patch works (modulo CHNAGES)
- +1: jailletc36, ylavic, icing
-
*) Save a few bytes in conf pool when parsing some directives
Trunk patch:
http://svn.apache.org/r1732252
defines = (char **)ap_server_config_defines->elts;
for (i = 0; i < ap_server_config_defines->nelts; i++) {
if (strcmp(defines[i], name) == 0) {
- defines[i] = apr_array_pop(ap_server_config_defines);
+ defines[i] = *(char **)apr_array_pop(ap_server_config_defines);
break;
}
}