mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
print_number: fix Off-By-One error
Thanks @liuyunbin for reporting this in #230
This commit is contained in:
parent
28d4410f42
commit
4d84acf926
2
cJSON.c
2
cJSON.c
@ -512,7 +512,7 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* reserve appropriate space in the output */
|
/* reserve appropriate space in the output */
|
||||||
output_pointer = ensure(output_buffer, (size_t)length);
|
output_pointer = ensure(output_buffer, (size_t)length + sizeof(""));
|
||||||
if (output_pointer == NULL)
|
if (output_pointer == NULL)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user