Skip to content

Commit 104d448

Browse files
committed
Shared: Only use heuristic summary flow in case there is no content based flow.
1 parent 2427227 commit 104d448

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/mad/codeql/mad/modelgenerator/internal/ModelGeneratorImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ module MakeModelGenerator<
881881
string captureMixedFlow(DataFlowSummaryTargetApi api, boolean lift) {
882882
result = ContentSensitive::captureFlow(api, lift)
883883
or
884-
not exists(ContentSensitive::captureFlow(api, lift)) and
884+
not exists(ContentSensitive::captureFlow(api, _)) and
885885
result = captureFlow(api) and
886886
lift = true
887887
}

0 commit comments

Comments
 (0)