From 20df5adbaa7bd868a958b75ca2d31cd9b10278e1 Mon Sep 17 00:00:00 2001 From: Asger F Date: Tue, 25 Jun 2024 10:28:29 +0200 Subject: [PATCH] JS: Bugfix in DeduplicatePathGraph This was introduced after a quick fix to handle the addition of provenance. --- shared/dataflow/codeql/dataflow/DataFlow.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/dataflow/codeql/dataflow/DataFlow.qll b/shared/dataflow/codeql/dataflow/DataFlow.qll index ce7814c1c74..e110d65468a 100644 --- a/shared/dataflow/codeql/dataflow/DataFlow.qll +++ b/shared/dataflow/codeql/dataflow/DataFlow.qll @@ -957,7 +957,7 @@ module DataFlowMake Lang> { } private predicate edgesProj(InputPathNode node1, InputPathNode node2) { - Graph::edges(node2, node1, _, _) + Graph::edges(node1, node2, _, _) } private module Pass1 =