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 2868150 commit 6da7890Copy full SHA for 6da7890
cpp/ql/src/Security/CWE/CWE-120/UnboundedWrite.ql
@@ -122,7 +122,8 @@ module Config implements DataFlow::ConfigSig {
122
123
predicate isBarrier(DataFlow::Node node) {
124
// Block flow if the node is guarded by any <, <= or = operations.
125
- node = DataFlow::BarrierGuard<lessThanOrEqual/3>::getABarrierNode()
+ node = DataFlow::BarrierGuard<lessThanOrEqual/3>::getABarrierNode() or
126
+ node = DataFlow::BarrierGuard<lessThanOrEqual/3>::getAnIndirectBarrierNode()
127
}
128
129
predicate observeDiffInformedIncrementalMode() { any() }
0 commit comments