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 43e99d0 commit 448a1eaCopy full SHA for 448a1ea
cpp/ql/src/Critical/OverflowDestination.ql
@@ -82,6 +82,16 @@ module OverflowDestinationConfig implements DataFlow::ConfigSig {
82
nodeIsBarrierEqualityCandidate(node, access, checkedVar)
83
)
84
}
85
+
86
+ predicate observeDiffInformedIncrementalMode() { any() }
87
88
+ Location getASelectedSourceLocation(DataFlow::Node source) { none() }
89
90
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
91
+ exists(FunctionCall fc | result = fc.getLocation() |
92
+ sourceSized(fc, sink.asIndirectConvertedExpr())
93
+ )
94
+ }
95
96
97
module OverflowDestination = TaintTracking::Global<OverflowDestinationConfig>;
0 commit comments