Skip to content

Commit b6df832

Browse files
committed
Shared: add back calls lost in the merge conflict
1 parent 7ef2502 commit b6df832

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared/dataflow/codeql/dataflow/internal/DataFlowImpl.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2557,7 +2557,7 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
25572557
TPathNodeSink(NodeEx node, FlowState state) {
25582558
exists(PathNodeMid sink |
25592559
sink.isAtSink() and
2560-
node = sink.getNodeEx() and
2560+
node = toNormalSinkNodeEx(sink.getNodeEx()) and
25612561
state = sink.getState()
25622562
)
25632563
} or
@@ -2780,7 +2780,7 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
27802780
PathNodeSink projectToSink(string model) {
27812781
this.isAtSink() and
27822782
sinkModel(node, model) and
2783-
result.getNodeEx() = node and
2783+
result.getNodeEx() = toNormalSinkNodeEx(node) and
27842784
result.getState() = state
27852785
}
27862786
}

0 commit comments

Comments
 (0)