Skip to content

Commit 163e3ca

Browse files
committed
FlowSummaryImpl: Fix CP
1 parent 2418e60 commit 163e3ca

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

shared/dataflow/codeql/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2218,9 +2218,11 @@ module Make<
22182218
)
22192219
)
22202220
or
2221-
exists(SourceElement source, SourceSinkReportingElement e |
2222-
n.(SourceOutputNode).isExit(source, _, e, _) and
2223-
result = getSourceSinkType(e)
2221+
exists(SourceElement source |
2222+
exists(SourceSinkReportingElement e |
2223+
n.(SourceOutputNode).isExit(source, _, e, _) and
2224+
result = getSourceSinkType(e)
2225+
)
22242226
or
22252227
exists(SummaryComponentStack s, ContentSet cont |
22262228
n = sourceElementOutputState(source, _, s) and

0 commit comments

Comments
 (0)