Java: Update dependencies.

This commit is contained in:
Michael Nebel
2022-05-23 16:14:18 +02:00
parent 94664f11f5
commit a8b103b89c
2 changed files with 2 additions and 2 deletions

View File

@@ -22,5 +22,5 @@ class SummaryModelTest extends SummaryModelCsv {
} }
from DataFlow::Node node1, DataFlow::Node node2 from DataFlow::Node node1, DataFlow::Node node2
where FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(node1, node2) where FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(node1, node2, _)
select node1, node2 select node1, node2

View File

@@ -16,7 +16,7 @@ from DataFlow::Node src, DataFlow::Node sink
where where
( (
localAdditionalTaintStep(src, sink) or localAdditionalTaintStep(src, sink) or
FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(src, sink) FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(src, sink, _)
) and ) and
not FlowSummaryImpl::Private::Steps::summaryLocalStep(src, sink, false) and not FlowSummaryImpl::Private::Steps::summaryLocalStep(src, sink, false) and
not FlowSummaryImpl::Private::Steps::summaryReadStep(src, _, sink) and not FlowSummaryImpl::Private::Steps::summaryReadStep(src, _, sink) and