From 63ba5a61b59142048400b0a5e434abb7c7b98e2a Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 12 Dec 2006 15:46:53 +0000 Subject: [PATCH] fix highly unlikely bug --- src/http/modules/ngx_http_log_module.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/http/modules/ngx_http_log_module.c b/src/http/modules/ngx_http_log_module.c index c035449ff..04ba03bff 100644 --- a/src/http/modules/ngx_http_log_module.c +++ b/src/http/modules/ngx_http_log_module.c @@ -546,6 +546,8 @@ ngx_http_log_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) return NGX_CONF_ERROR; } + log->disk_full_time = 0; + lmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_log_module); fmt = lmcf->formats.elts;