mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
fix clang-sanitizer warnings
This commit is contained in:
parent
68cd0d4a11
commit
501046247d
2
cJSON.c
2
cJSON.c
@ -1182,7 +1182,6 @@ static unsigned char *print_array(const cJSON * const item, const size_t depth,
|
||||
*output_pointer = '[';
|
||||
output_buffer->offset++;
|
||||
|
||||
current_element = item->child;
|
||||
while (current_element != NULL)
|
||||
{
|
||||
if (print_value(current_element, depth + 1, format, output_buffer, hooks) == NULL)
|
||||
@ -1346,7 +1345,6 @@ static unsigned char *print_object(const cJSON * const item, const size_t depth,
|
||||
}
|
||||
output_buffer->offset += length;
|
||||
|
||||
current_item = item->child;
|
||||
while (current_item)
|
||||
{
|
||||
if (format)
|
||||
|
Loading…
Reference in New Issue
Block a user