exit cycle early,

found by Coverity's Scan
This commit is contained in:
Igor Sysoev 2007-07-19 19:12:36 +00:00
parent b1ccbdad7b
commit 8e1c997ba0

View File

@ -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;
}
}