Skip to content

Commit 1fd68c9

Browse files
committed
Fix unintended global variable usage as pointed out by cloudflare#5
1 parent 96a636c commit 1fd68c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jit/loom.ljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ var loomstart, loomstop;
632632
t.otr, t.oex = otr, oex;
633633

634634
{
635-
msg = what=='abort' && fmterr(otr, oex) || null;
635+
var msg = what=='abort' && fmterr(otr, oex) || null;
636636
t.evt[#t.evt +1] = {
637637
what, func, pc,
638638
msg,

0 commit comments

Comments
 (0)