httxt2dbm: Correct length computation for the 'value' stored in the DBM file PR 47650
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1430298 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.4
+ *) httxt2dbm: Correct length computation for the 'value' stored in the DBM file
+ PR 47650 [jon buckybox com]
+
*) core: Be more correct about rejecting directives that cannot work in <If>
sections. [Stefan Fritsch]
trunk patch: https://svn.apache.org/viewvc?view=revision&revision=1422937
2.4.x patch: trunk patch works + CHANGES to be added
+1: jailletc36, jorton, humbedooh
-
- * support/httxt2dbm: Correct length computation for the 'value' stored in the DBM file
- PR 47650
- trunk patch: https://svn.apache.org/viewvc?view=revision&revision=1422135
- 2.4.x patch: trunk patch works
- +1: jailletc36, jorton, humbedooh
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
}
dbmval.dptr = apr_pstrmemdup(p, value, c - value);
- dbmval.dsize = (c - line);
+ dbmval.dsize = (c - value);
if (verbose) {
apr_file_printf(errfile, " '%s' -> '%s'"NL,