From 898446c8bacb5b0e1c223dfec4643ebee8d07f8e Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 26 Feb 2004 17:10:01 +0000 Subject: nginx-0.0.2-2004-02-26-20:10:01 import --- src/core/ngx_times.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src/core') 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 } -- cgit