mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
cJSONUtils_GeneratePatches: Fix multiple removes in arrays
This commit is contained in:
parent
18b4e2f941
commit
ee3c3bc80e
@ -822,7 +822,7 @@ static void cJSONUtils_CompareToPatch(cJSON *patches, const unsigned char *path,
|
||||
cJSONUtils_CompareToPatch(patches, newpath, from, to);
|
||||
}
|
||||
/* remove leftover elements from 'from' that are not in 'to' */
|
||||
for (; from; (void)(from = from->next), c++)
|
||||
for (; from; (void)(from = from->next))
|
||||
{
|
||||
/* check if conversion to unsigned long is valid
|
||||
* This should be eliminated at compile time by dead code elimination
|
||||
|
Loading…
Reference in New Issue
Block a user