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.
2 parents 80031e5 + 54f2648 commit 680aeeaCopy full SHA for 680aeea
cpp/ql/src/Security/CWE/CWE-078/ExecTainted.ql
@@ -147,8 +147,8 @@ module ExecTaintConfig implements DataFlow::StateConfigSig {
147
148
predicate isBarrier(DataFlow::Node node) { isBarrierImpl(node) }
149
150
- predicate isBarrierOut(DataFlow::Node node) {
151
- isSink(node, _) // Prevent duplicates along a call chain, since `shellCommand` will include wrappers
+ predicate isBarrierOut(DataFlow::Node node, FlowState state) {
+ isSink(node, state) // Prevent duplicates along a call chain, since `shellCommand` will include wrappers
152
}
153
154
predicate observeDiffInformedIncrementalMode() { any() }
0 commit comments