1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-13 21:42:17 +03:00

Save a few bytes in conf pool when parsing some directives. Use temp_pool when applicable.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1657692 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christophe Jaillet
2015-02-05 21:03:04 +00:00
parent be32097e6c
commit 25a2e41ea7
3 changed files with 4 additions and 4 deletions

View File

@@ -360,7 +360,7 @@ const char *ap_mpm_set_coredumpdir(cmd_parms *cmd, void *dummy,
return err;
}
fname = ap_server_root_relative(cmd->pool, arg);
fname = ap_server_root_relative(cmd->temp_pool, arg);
if (!fname) {
return apr_pstrcat(cmd->pool, "Invalid CoreDumpDirectory path ",
arg, NULL);