We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd4c08 commit 1e6c983Copy full SHA for 1e6c983
cpp/ql/src/semmle/code/cpp/ir/dataflow/DefaultTaintTracking.qll
@@ -37,7 +37,7 @@ private class DefaultTaintTrackingCfg extends DataFlow::Configuration {
37
}
38
39
private predicate accessesVariable(CopyInstruction copy, Variable var) {
40
- exists(VariableAddressInstruction va | va.getVariable().getAST() = var |
+ exists(VariableAddressInstruction va | va.getASTVariable() = var |
41
copy.(StoreInstruction).getDestinationAddress() = va
42
or
43
copy.(LoadInstruction).getSourceAddress() = va
0 commit comments