mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
- 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
This commit is contained in:
parent
8e0c2e1cb9
commit
0fd3f882cd
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue