From 195df77a27048303b611e834d3f4eda03357ca2c Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 31 Jul 2009 08:25:52 +0000 Subject: [PATCH] MFB: fix http_get_request_body[_stream]() with FastCGI SAPI --- http_api.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/http_api.c b/http_api.c index 4fa8c3d..04247fa 100644 --- a/http_api.c +++ b/http_api.c @@ -357,6 +357,9 @@ PHP_HTTP_API STATUS _http_get_request_body_ex(char **body, size_t *length, zend_ memcpy(*body + *length, buf, len); *length += len; (*body)[*length] = '\0'; + if (len < (int) sizeof(buf)) { + break; + } } /* check for error */ @@ -395,6 +398,9 @@ PHP_HTTP_API php_stream *_http_get_request_body_stream(TSRMLS_D) while (0 < (len = sapi_module.read_post(buf, sizeof(buf) TSRMLS_CC))) { php_stream_write(s, buf, len); + if (len < (int) sizeof(buf)) { + break; + } } if (len < 0) { -- 2.30.2