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 cccf6e6 commit e94b492Copy full SHA for e94b492
go/ql/src/experimental/CWE-840/ConditionalBypass.ql
@@ -22,6 +22,10 @@ module Config implements DataFlow::ConfigSig {
22
predicate isSink(DataFlow::Node sink) {
23
exists(ComparisonExpr c | c.getAnOperand() = sink.asExpr())
24
}
25
+
26
+ predicate observeDiffInformedIncrementalMode() {
27
+ none() // can't override the locations accurately because of secondary use of config.
28
+ }
29
30
31
/** Tracks taint flow for reasoning about conditional bypass. */
0 commit comments