diff options
Diffstat (limited to 'src/core/ngx_times.c')
-rw-r--r-- | src/core/ngx_times.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/core/ngx_times.c b/src/core/ngx_times.c index 235e7032d..a9ddb82dc 100644 --- a/src/core/ngx_times.c +++ b/src/core/ngx_times.c @@ -77,10 +77,8 @@ void ngx_time_update(time_t s) } #if (NGX_THREADS) - if (ngx_time_mutex) { - if (ngx_mutex_trylock(ngx_time_mutex) != NGX_OK) { - return; - } + if (ngx_mutex_trylock(ngx_time_mutex) != NGX_OK) { + return; } #endif @@ -119,9 +117,7 @@ void ngx_time_update(time_t s) tm.ngx_tm_sec); #if (NGX_THREADS) - if (ngx_time_mutex) { - ngx_mutex_unlock(ngx_time_mutex); - } + ngx_mutex_unlock(ngx_time_mutex); #endif } |