Skip to content

Commit 20df5ad

Browse files
committed
JS: Bugfix in DeduplicatePathGraph
This was introduced after a quick fix to handle the addition of provenance.
1 parent f43a189 commit 20df5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ module DataFlowMake<LocationSig Location, InputSig<Location> Lang> {
957957
}
958958

959959
private predicate edgesProj(InputPathNode node1, InputPathNode node2) {
960-
Graph::edges(node2, node1, _, _)
960+
Graph::edges(node1, node2, _, _)
961961
}
962962

963963
private module Pass1 =

0 commit comments

Comments
 (0)