Skip to content

Commit 705243b

Browse files
committed
temp
1 parent aae8079 commit 705243b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

shared/dataflow/codeql/dataflow/internal/DataFlowImpl.qll

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3255,7 +3255,12 @@ module MakeImpl<InputSig Lang> {
32553255
then t = nt
32563256
else (
32573257
compatibleTypes(nt, t0) and
3258-
t = t0
3258+
// t = t0
3259+
if inSummaryCtx = true and node instanceof ParamNodeEx
3260+
then
3261+
t = nt and
3262+
compatibleTypes(origT, t)
3263+
else t = t0
32593264
)
32603265
)
32613266
else t = t0

0 commit comments

Comments
 (0)