# HG changeset patch # User Igor Sysoev # Date 1184872356 0 # Node ID e30e9de091b7ed8b3464771c0a58a98b56fc884e # Parent 345d2095a6d58224a07fdd21a72b728f6c877af4 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 --- 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_reques if (rc == NGX_ERROR || rc == NGX_AGAIN) { return rc; } + + break; } }