mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
ensure: Fix overflow detection
This commit is contained in:
parent
3c1bfe125c
commit
2683d4d987
2
cJSON.c
2
cJSON.c
@ -276,7 +276,7 @@ static unsigned char* ensure(printbuffer * const p, size_t needed, const interna
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* calculate new buffer size */
|
/* calculate new buffer size */
|
||||||
if (newsize > (INT_MAX / 2))
|
if (needed > (INT_MAX / 2))
|
||||||
{
|
{
|
||||||
/* overflow of int, use INT_MAX if possible */
|
/* overflow of int, use INT_MAX if possible */
|
||||||
if (needed <= INT_MAX)
|
if (needed <= INT_MAX)
|
||||||
|
Loading…
Reference in New Issue
Block a user