Fix compile time bounds check test

This commit is contained in:
gingerBill
2018-11-23 10:38:17 +00:00
parent 52dcaeb1e9
commit 4c2f03b1f2

View File

@@ -2647,9 +2647,9 @@ bool check_index_value(CheckerContext *c, bool open_range, Ast *index_value, i64
if (value) *value = v;
bool out_of_bounds = false;
if (open_range) {
out_of_bounds = v > max_count;
out_of_bounds = v > max_count+1;
} else {
out_of_bounds = v >= max_count;
out_of_bounds = v > max_count;
}
if (v < 0) {
out_of_bounds = true;