Commit b25b86ef authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Guys... please be _careful_ when you pcalloc -> palloc!!!

  Resolves GAmes' segfault observations


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91556 13f79535-47bb-0310-9956-ffa450edef68
parent 026ed7a3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -183,6 +183,8 @@ static void *merge_core_dir_configs(apr_pool_t *a, void *basev, void *newv)
	memcpy(conf->response_code_strings, base->response_code_strings,
	       sizeof(*conf->response_code_strings) * RESPONSE_CODES);
    }
    else
        base->response_code_strings = NULL;

    conf->d = new->d;
    conf->d_is_fnmatch = new->d_is_fnmatch;