From: Igor Sysoev Date: Thu, 19 Jul 2007 19:12:36 +0000 (+0000) Subject: exit cycle early, X-Git-Tag: release-0.6.5~9 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=8e1c997ba0e9371d74242294f2a4b47c3a779941;p=nginx.git exit cycle early, found by Coverity's Scan --- diff --git a/src/http/modules/ngx_http_ssi_filter_module.c b/src/http/modules/ngx_http_ssi_filter_module.c index 549ae4ce2..0de03aae0 100644 --- a/src/http/modules/ngx_http_ssi_filter_module.c +++ b/src/http/modules/ngx_http_ssi_filter_module.c @@ -439,6 +439,8 @@ ngx_http_ssi_body_filter(ngx_http_request_t *r, ngx_chain_t *in) if (rc == NGX_ERROR || rc == NGX_AGAIN) { return rc; } + + break; } }