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 91b9c3e commit a77cab6Copy full SHA for a77cab6
cpp/ql/src/Security/CWE/CWE-022/TaintedPath.ql
@@ -93,6 +93,12 @@ module TaintedPathConfig implements DataFlow::ConfigSig {
93
// make sinks barriers so that we only report the closest instance
94
isSink(node)
95
}
96
+
97
+ predicate observeDiffInformedIncrementalMode() { any() }
98
99
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
100
+ result = sink.asIndirectArgument().getLocation()
101
+ }
102
103
104
module TaintedPath = TaintTracking::Global<TaintedPathConfig>;
0 commit comments