diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-08-04 13:34:23 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-08-04 13:34:23 +0000 |
commit | 7268cc8c6e5b1f5b463583018332fa18655b24c0 (patch) | |
tree | 60ec189e5fd7560329717395f5f0f206d4974e42 /src/http/ngx_http_file_cache.c | |
parent | 2b74841a4f8301e7b3d3af91d220240a3c6e5d34 (diff) | |
download | nginx-7268cc8c6e5b1f5b463583018332fa18655b24c0.tar.gz nginx-7268cc8c6e5b1f5b463583018332fa18655b24c0.zip |
zero fcn->updating after node allocation
Diffstat (limited to 'src/http/ngx_http_file_cache.c')
-rw-r--r-- | src/http/ngx_http_file_cache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c index c9ecdedb5..d14a7c5e6 100644 --- a/src/http/ngx_http_file_cache.c +++ b/src/http/ngx_http_file_cache.c @@ -581,6 +581,7 @@ ngx_http_file_cache_exists(ngx_http_file_cache_t *cache, ngx_http_cache_t *c) fcn->uses = 1; fcn->count = 1; + fcn->updating = 0; renew: @@ -1429,6 +1430,7 @@ ngx_http_file_cache_add(ngx_http_file_cache_t *cache, ngx_http_cache_t *c) fcn->valid_msec = c->valid_msec; fcn->error = 0; fcn->exists = 1; + fcn->updating = 0; fcn->uniq = c->uniq; fcn->valid_sec = c->valid_sec; fcn->body_start = c->body_start; |