From: William A. Rowe Jr Date: Fri, 19 Oct 2001 02:08:44 +0000 (+0000) Subject: Listen to my own advise. Fortunately, the new apr_pool_readonly code X-Git-Tag: 2.0.27~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f31545e7635cd8a046cd5dad0e3569ca970c25e5;p=thirdparty%2Fapache%2Fhttpd.git Listen to my own advise. Fortunately, the new apr_pool_readonly code catches these in no time ;) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91558 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index 56a421ca257..a7cd374fe3f 100644 --- a/server/core.c +++ b/server/core.c @@ -184,7 +184,7 @@ static void *merge_core_dir_configs(apr_pool_t *a, void *basev, void *newv) sizeof(*conf->response_code_strings) * RESPONSE_CODES); } else - base->response_code_strings = NULL; + conf->response_code_strings = NULL; conf->d = new->d; conf->d_is_fnmatch = new->d_is_fnmatch;