Skip to content

Commit 67c3640

Browse files
committed
(perl #131570) don't skip the temps stack entry we just allocated
1 parent 8abe6e1 commit 67c3640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pp_hot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1736,7 +1736,7 @@ PP(pp_aassign)
17361736
if (UNLIKELY(ix >= PL_tmps_max))
17371737
/* speculatively grow enough to cover other
17381738
* possible refs */
1739-
ix = tmps_grow_p(ix + (lastlelem - lelem));
1739+
(void)tmps_grow_p(ix + (lastlelem - lelem));
17401740
PL_tmps_stack[ix] = ref;
17411741
}
17421742

0 commit comments

Comments
 (0)