changeset 1320:e30e9de091b7

exit cycle early, found by Coverity's Scan
author Igor Sysoev <igor@sysoev.ru>
date Thu, 19 Jul 2007 19:12:36 +0000
parents 345d2095a6d5
children 8eb4dfcb89a6
files src/http/modules/ngx_http_ssi_filter_module.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
             }
         }