fix hang in SAPI deactivate when body is 4096 bytes or more
authorRob Richards <rrichards@php.net>
Mon, 18 Apr 2011 08:24:49 +0000 (08:24 +0000)
committerRob Richards <rrichards@php.net>
Mon, 18 Apr 2011 08:24:49 +0000 (08:24 +0000)
http_api.c

index 1943e126a1f4d5193c6ca36d26e75cb09a71097a..183a44c01f7683eba53998504f02f6244cc82a30 100644 (file)
@@ -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;