Skip to content

Commit 403ad3c

Browse files
committed
Shared: Add missing transitive closure.
1 parent 712d8aa commit 403ad3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared/dataflowstack/codeql/dataflowstack/DataFlowStack.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ module DataFlowStackMake<LocationSig Location, DF::InputSig<Location> Lang> {
236236
exists(Flow::PathNode source, Flow::PathNode sink |
237237
flowStack = TFlowStack(source, sink) and
238238
frame.getPathNode() = DataFlowStack::getASuccessor*(source) and
239-
DataFlowStack::getASuccessor(frame.getPathNode()) = sink
239+
DataFlowStack::getASuccessor*(frame.getPathNode()) = sink
240240
)
241241
}
242242

shared/dataflowstack/codeql/dataflowstack/TaintTrackingStack.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ module TaintTrackingStackMake<
242242
exists(Flow::PathNode source, Flow::PathNode sink |
243243
flowStack = TFlowStack(source, sink) and
244244
frame.getPathNode() = TaintTrackingStack::getASuccessor*(source) and
245-
TaintTrackingStack::getASuccessor(frame.getPathNode()) = sink
245+
TaintTrackingStack::getASuccessor*(frame.getPathNode()) = sink
246246
)
247247
}
248248

0 commit comments

Comments
 (0)