Java: FP in java/index-out-of-bounds when index known to be less than the length of the array
未关闭
false-positive
Java
- 主要语言
- CodeQL
- 星标
- 10.1k
- 派生
- 2.1k
- 平均合并
- 2 天 15 小时
- 30 天内合并 PR
- 141
描述
See: https://discuss.lgtm.com/t/java-false-positives/1787/2
```java
int x = ++i;
int y = ++i;
if (y < sb.length) {
byte[] hex = {sb[x], sb[y]};
^^^^^ -- flagged as alert
```
We know that (modulo overflow):
* `x` = `y - 1` --> `x` < `y`
* `y` < `sb.length`
Example: https://lgtm.com/projects/g/apache/accumulo/snapshot/b672a845ed56e9fd521ab85462cb6c45baa9abad/files/core/src/main/java/org/apache/accumulo/core/iterators/conf/ColumnSet.java?sort=name&dir=ASC&mode=heatmap#xb5a588dd1daff67e:1
贡献指南
评估
这个 Issue 还没有评估数据。