We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b0cfc5 commit 6ff8746Copy full SHA for 6ff8746
cpp/ql/src/Security/CWE/CWE-170/ImproperNullTerminationTainted.ql
@@ -43,6 +43,12 @@ private module Config implements DataFlow::ConfigSig {
43
}
44
45
predicate isSink(DataFlow::Node sink) { isSink(sink, _) }
46
+
47
+ predicate observeDiffInformedIncrementalMode() { any() }
48
49
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
50
+ exists(VariableAccess va | result = va.getLocation() | isSink(sink, va))
51
+ }
52
53
54
module Flow = TaintTracking::Global<Config>;
0 commit comments