Preallocating exact number of default MIME types entries.
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index f500c5d..db0f962 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -3400,7 +3400,7 @@
     }
 
     if (conf->types == NULL) {
-        conf->types = ngx_array_create(cf->pool, 4, sizeof(ngx_hash_key_t));
+        conf->types = ngx_array_create(cf->pool, 3, sizeof(ngx_hash_key_t));
         if (conf->types == NULL) {
             return NGX_CONF_ERROR;
         }