# HG changeset patch # User Igor Sysoev # Date 1184872356 0 # Node ID e30e9de091b7ed8b3464771c0a58a98b56fc884e # Parent 345d2095a6d58224a07fdd21a72b728f6c877af4 exit cycle early, found by Coverity's Scan diff -r 345d2095a6d5 -r e30e9de091b7 src/http/modules/ngx_http_ssi_filter_module.c --- a/src/http/modules/ngx_http_ssi_filter_module.c Thu Jul 19 19:11:57 2007 +0000 +++ b/src/http/modules/ngx_http_ssi_filter_module.c Thu Jul 19 19:12:36 2007 +0000 @@ -439,6 +439,8 @@ if (rc == NGX_ERROR || rc == NGX_AGAIN) { return rc; } + + break; } }