1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Merge pull request #239 from DRMacIver/overflows

Avoid undefined behaviour with large array indices
This commit is contained in:
Stephen Dolan
2013-12-12 16:38:14 -08:00
4 changed files with 41 additions and 10 deletions

1
jv.h
View File

@@ -60,6 +60,7 @@ jv jv_bool(int);
jv jv_number(double);
double jv_number_value(jv);
int jv_is_integer(jv);
jv jv_array(void);
jv jv_array_sized(int);