diff options
author | Ruslan Ermilov <ru@nginx.com> | 2016-02-25 16:29:51 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2016-02-25 16:29:51 +0300 |
commit | ea9a2cf2ba2a4bffa19488b37b58273d5cde8092 (patch) | |
tree | 5ecde181deda589861d1a08c24cdc72d035842c3 /src/core/ngx_module.c | |
parent | 7a10604ab6ce24fc4fb541480975574f42dd95ea (diff) | |
download | nginx-ea9a2cf2ba2a4bffa19488b37b58273d5cde8092.tar.gz nginx-ea9a2cf2ba2a4bffa19488b37b58273d5cde8092.zip |
Dynamic modules: removed unnecessary initialization.
It became unnecessary after 85dea406e18f.
Diffstat (limited to 'src/core/ngx_module.c')
-rw-r--r-- | src/core/ngx_module.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/ngx_module.c b/src/core/ngx_module.c index f5ec86a7c..2d81b3893 100644 --- a/src/core/ngx_module.c +++ b/src/core/ngx_module.c @@ -27,7 +27,6 @@ ngx_preinit_modules() { ngx_uint_t i; - ngx_max_module = 0; for (i = 0; ngx_modules[i]; i++) { ngx_modules[i]->index = i; ngx_modules[i]->name = ngx_module_names[i]; |