diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2007-07-19 19:12:36 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2007-07-19 19:12:36 +0000 |
| commit | 8e1c997ba0e9371d74242294f2a4b47c3a779941 (patch) | |
| tree | cb8f3b6d26113209910d8c889e9ee1ac26a861ba | |
| parent | b1ccbdad7bef41c105b78384eafbf509af91fa36 (diff) | |
| download | nginx-8e1c997ba0e9371d74242294f2a4b47c3a779941.tar.gz nginx-8e1c997ba0e9371d74242294f2a4b47c3a779941.tar.bz2 | |
exit cycle early,
found by Coverity's Scan
| -rw-r--r-- | src/http/modules/ngx_http_ssi_filter_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } } |
