Skip to content

Commit 441ccef

Browse files
committed
Dataflow: Bugfix, use arg type rather than strengthened param type.
1 parent a0a9d30 commit 441ccef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/lib/semmle/code/java/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2677,7 +2677,7 @@ module Impl<FullStateConfigSig Config> {
26772677
TSummaryCtxSome(ParamNodeEx p, FlowState state, DataFlowType t, AccessPath ap) {
26782678
exists(AccessPathApprox apa | ap.getApprox() = apa |
26792679
Stage5::parameterMayFlowThrough(p, apa) and
2680-
Stage5::fwdFlow(p, state, _, _, _, _, t, apa, _) and
2680+
Stage5::fwdFlow(p, state, _, _, Option<DataFlowType>::some(t), _, _, apa, _) and
26812681
Stage5::revFlow(p, state, _)
26822682
)
26832683
}

0 commit comments

Comments
 (0)