mirror of
https://github.com/kgabis/parson.git
synced 2024-11-24 06:05:29 +00:00
Fixes typo causing problems with array element validation
This commit is contained in:
parent
9d6fbde0c4
commit
1c1b77aa7e
2
parson.c
2
parson.c
@ -1646,7 +1646,7 @@ JSON_Status json_validate(const JSON_Value *schema, const JSON_Value *value) {
|
||||
temp_schema_value = json_array_get_value(schema_array, 0);
|
||||
for (i = 0; i < json_array_get_count(value_array); i++) {
|
||||
temp_value = json_array_get_value(value_array, i);
|
||||
if (json_validate(temp_schema_value, temp_value) == 0) {
|
||||
if (json_validate(temp_schema_value, temp_value) == JSONFailure) {
|
||||
return JSONFailure;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user