You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2019/10/14 20:14:58 UTC

svn commit: r1868457 - /httpd/httpd/trunk/modules/http/mod_mime.c

Author: rpluem
Date: Mon Oct 14 20:14:58 2019
New Revision: 1868457

URL: http://svn.apache.org/viewvc?rev=1868457&view=rev
Log:
* Correctly initialize nomime member

Modified:
    httpd/httpd/trunk/modules/http/mod_mime.c

Modified: httpd/httpd/trunk/modules/http/mod_mime.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/mod_mime.c?rev=1868457&r1=1868456&r2=1868457&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/mod_mime.c (original)
+++ httpd/httpd/trunk/modules/http/mod_mime.c Mon Oct 14 20:14:58 2019
@@ -135,6 +135,7 @@ static void *create_mime_dir_config(apr_
     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;
 }