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 7df09f3 commit f3098e7Copy full SHA for f3098e7
cpp/ql/src/Security/CWE/CWE-120/UnboundedWrite.ql
@@ -124,6 +124,12 @@ module Config implements DataFlow::ConfigSig {
124
// Block flow if the node is guarded by any <, <= or = operations.
125
node = DataFlow::BarrierGuard<lessThanOrEqual/3>::getABarrierNode()
126
}
127
+
128
+ predicate observeDiffInformedIncrementalMode() { any() }
129
130
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
131
+ exists(BufferWrite bw | result = bw.getLocation() | isSink(sink, bw, _))
132
+ }
133
134
135
module Flow = TaintTracking::Global<Config>;
0 commit comments