We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3098e7 commit 62fa730Copy full SHA for 62fa730
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