From 0fd3f882cdf96ac58b08648f9b9d577829e3799c Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Thu, 18 Aug 2011 09:16:04 +0000 Subject: - do not use 64bit integer instead of size_t (can't be alloc'ed), or when the actual possible values are 32bit or lower only --- sapi/cli/php_http_parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi/cli/php_http_parser.h') diff --git a/sapi/cli/php_http_parser.h b/sapi/cli/php_http_parser.h index 353550f017..8be44739a2 100644 --- a/sapi/cli/php_http_parser.h +++ b/sapi/cli/php_http_parser.h @@ -112,7 +112,7 @@ struct php_http_parser { unsigned char index; uint32_t nread; - int64_t content_length; + size_t content_length; /** READ-ONLY **/ unsigned short http_major; -- cgit v1.2.1