From: Ruediger Pluem Date: Mon, 14 Oct 2019 20:14:58 +0000 (+0000) Subject: * Correctly initialize nomime member X-Git-Tag: 2.5.0-alpha2-ci-test-only~1872 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b05de8e2d0b10d98150d0da86379d32c303f40a;p=thirdparty%2Fapache%2Fhttpd.git * Correctly initialize nomime member git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1868457 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/mod_mime.c b/modules/http/mod_mime.c index e951beedc12..3cf907148ca 100644 --- a/modules/http/mod_mime.c +++ b/modules/http/mod_mime.c @@ -135,6 +135,7 @@ static void *create_mime_dir_config(apr_pool_t *p, char *dummy) new->use_path_info = 2; new->ct_last_ext = CT_LAST_INIT; new->all_last_ext = ALL_LAST_INIT; + new->nomime = NOMIME_INIT; return new; }