Changes with Apache 2.4.5
+ *) mod_setenvif: Fix crash in case SetEnvif and SetEnvIfExpr are used
+ together. PR 54881. [Ruediger Pluem]
+
*) htdigest: Fix buffer overflow when reading digest password file
with very long lines. PR 54893. [Rainer Jung]
trunk patches: https://svn.apache.org/r1470183
2.4.x patch: trunk patches work
+1: sf, covener, rpluem
-
- * mod_setenvif: Fix null pointer dereference in case SetEnvif and
- SetEnvIfExpr are used together. PR: 54881
- Trunk version of patch:
- http://svn.apache.org/r1471449
- Backport version for 2.4.x of patch:
- Trunk version of patch works
- +1: rpluem, covener, humbedooh
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
*/
for (i = 0; i < sconf->conditionals->nelts; ++i) {
new = &entries[i];
- if (!strcasecmp(new->name, fname)) {
+ if (new->name && !strcasecmp(new->name, fname)) {
fname = new->name;
break;
}