mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
import cpp
|
|
|
|
from AddExpr a, Variable v, RelationalOperation cmp
|
|
where
|
|
a.getAnOperand() = v.getAnAccess() and
|
|
cmp.getAnOperand() = a and
|
|
cmp.getAnOperand() = v.getAnAccess()
|
|
select cmp, "Overflow check." |