Skip to content

Commit 5f77577

Browse files
committed
JS: Prevent some bad joins under RTJO.
1 parent b8c9f72 commit 5f77577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/ql/lib/semmle/javascript/dataflow/TypeTracking.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class TypeTracker extends TTypeTracker {
138138
TypeTracker step(DataFlow::SourceNode pred, DataFlow::SourceNode succ) {
139139
exists(StepSummary summary |
140140
StepSummary::step(pred, succ, summary) and
141-
result = this.append(summary)
141+
result = pragma[only_bind_out](this).append(summary)
142142
)
143143
}
144144

0 commit comments

Comments
 (0)