slot number must be incremented once per second only, ngx_time_update() set msec in an wrong slot
diff --git a/src/core/ngx_times.c b/src/core/ngx_times.c index 88a9e98..f6e618a 100644 --- a/src/core/ngx_times.c +++ b/src/core/ngx_times.c
@@ -70,12 +70,6 @@ return; } - if (slot == NGX_TIME_SLOTS) { - slot = 0; - } else { - slot++; - } - if (sec == 0) { ngx_gettimeofday(&tv); @@ -87,14 +81,22 @@ tp = &cached_time[slot]; - tp->msec = msec; - if (tp->sec == sec) { + tp->msec = msec; ngx_unlock(&ngx_time_lock); return; } + if (slot == NGX_TIME_SLOTS) { + slot = 0; + } else { + slot++; + } + + tp = &cached_time[slot]; + tp->sec = sec; + tp->msec = msec; ngx_gmtime(sec, &gmt);