aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_file_cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/ngx_http_file_cache.c')
-rw-r--r--src/http/ngx_http_file_cache.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c
index 4d8473425..6d39269e3 100644
--- a/src/http/ngx_http_file_cache.c
+++ b/src/http/ngx_http_file_cache.c
@@ -519,6 +519,9 @@ ngx_http_file_cache_exists(ngx_http_file_cache_t *cache, ngx_http_cache_t *c)
if (fcn) {
ngx_queue_remove(&fcn->queue);
+ fcn->uses++;
+ fcn->count++;
+
if (fcn->error) {
if (fcn->valid_sec < ngx_time()) {
@@ -530,9 +533,6 @@ ngx_http_file_cache_exists(ngx_http_file_cache_t *cache, ngx_http_cache_t *c)
goto done;
}
- fcn->uses++;
- fcn->count++;
-
if (fcn->exists) {
c->exists = fcn->exists;
@@ -581,12 +581,13 @@ ngx_http_file_cache_exists(ngx_http_file_cache_t *cache, ngx_http_cache_t *c)
ngx_rbtree_insert(&cache->sh->rbtree, &fcn->node);
+ fcn->uses = 1;
+ fcn->count = 1;
+
renew:
rc = NGX_DECLINED;
- fcn->uses = 1;
- fcn->count = 1;
fcn->valid_msec = 0;
fcn->error = 0;
fcn->exists = 0;