fix segfault if nginx was build with -O2 -fomit-frame-pointer,
r1082 did not fix the bug the bug lived for a long time but became apparent when nginx was built with gcc 4.0.x -O2 optimization
This commit is contained in:
parent
326a213f77
commit
88c3e52258
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ ngx_time_update(time_t sec, ngx_uint_t msec)
|
|||
return;
|
||||
}
|
||||
|
||||
if (slot == NGX_TIME_SLOTS) {
|
||||
if (slot == NGX_TIME_SLOTS - 1) {
|
||||
slot = 0;
|
||||
} else {
|
||||
slot++;
|
||||
|
|
Loading…
Reference in a new issue