X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_api.c;h=183a44c01f7683eba53998504f02f6244cc82a30;hp=1943e126a1f4d5193c6ca36d26e75cb09a71097a;hb=e9ae111aa60f10b0c6dcf61b9d7a48a6e3473027;hpb=1e9ae509c5c6423114e0c6c874ee224cd999795e diff --git a/http_api.c b/http_api.c index 1943e12..183a44c 100644 --- a/http_api.c +++ b/http_api.c @@ -356,6 +356,7 @@ PHP_HTTP_API STATUS _http_get_request_body_ex(char **body, size_t *length, zend_ HTTP_G->read_post_data = 1; while (0 < (len = sapi_module.read_post(buf, 4096 TSRMLS_CC))) { + SG(read_post_bytes) += len; *body = erealloc(*body, *length + len + 1); memcpy(*body + *length, buf, len); *length += len;