Restore dropped fix for #957

@rfnx fixed #957 in acb89a, but this was accidentally merged to master
instead of trunk-tracking.  I checked for this sort of problem as part
of the 1.10 release, but missed this commit.  Restored.

Fixes #1054
This commit is contained in:
Jeff Kaufman
2015-12-18 15:01:15 -05:00
parent 7ee1efe0dd
commit 56a5d41ec3
+2 -2
View File
@@ -2479,8 +2479,8 @@ ngx_int_t send_out_headers_and_body(
rc = ngx_http_send_header(r); rc = ngx_http_send_header(r);
if (rc != NGX_OK) { if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
return NGX_ERROR; return rc;
} }
// Send the body. // Send the body.