X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_api.c;h=04247fa310d771ac16a9fc99e810671ff1f7db56;hp=4fa8c3d5b703203f92b84c083e421500bc7f8a9b;hb=195df77a27048303b611e834d3f4eda03357ca2c;hpb=b1ace11a9604ffcc496d32827aa66a2ba99db5ff 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) {