mirror of
https://github.com/github/codeql.git
synced 2026-04-19 14:04:09 +02:00
This means we treat != comparisons against strings as taint tracking guards:
if foo != "A"
foo # still tainted
else
foo # not tainted, because we know foo == "A"
end