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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user