diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-03-12 16:57:08 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-12 16:57:08 +0000 |
commit | 67f88e9cc678d31b5995518922d3fcb63a129465 (patch) | |
tree | 370c489b498feddaf17f12b125f6f75d69cdb9f2 /src/http/ngx_http_request.c | |
parent | a893eab667078a8ad9f473296663b36e6ade111a (diff) | |
download | nginx-67f88e9cc678d31b5995518922d3fcb63a129465.tar.gz nginx-67f88e9cc678d31b5995518922d3fcb63a129465.zip |
nginx-0.0.2-2004-03-12-19:57:08 import
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 530b69ce8..f79dc2af2 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -1485,12 +1485,16 @@ void ngx_http_close_request(ngx_http_request_t *r, int error) continue; } +#if (NGX_HTTP_CACHE) + if (cleanup[i].cache) { ngx_http_cache_unlock(cleanup[i].data.cache.hash, cleanup[i].data.cache.cache, log); continue; } +#endif + ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0, "http cleanup fd: %d", cleanup[i].data.file.fd); |