We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2beb5 commit 74e1ff4Copy full SHA for 74e1ff4
cJSON_Utils.c
@@ -282,7 +282,7 @@ static cJSON_bool decode_array_index_from_pointer(const unsigned char * const po
282
return 0;
283
}
284
285
- for (position = 0; (pointer[position] >= '0') && (pointer[0] <= '9'); position++)
+ for (position = 0; (pointer[position] >= '0') && (pointer[position] <= '9'); position++)
286
{
287
parsed_index = (10 * parsed_index) + (size_t)(pointer[position] - '0');
288
0 commit comments