From 9b05de8e2d0b10d98150d0da86379d32c303f40a Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Mon, 14 Oct 2019 20:14:58 +0000 Subject: [PATCH] * Correctly initialize nomime member git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1868457 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/mod_mime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/http/mod_mime.c b/modules/http/mod_mime.c index e951beedc1..3cf907148c 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; } -- 2.50.1