In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/67c3640a57440a4e9e224e9164ac9f39bdc9376f?hp=8abe6e1a76dd79b3948879a75933683b5401ec6b>

- Log -----------------------------------------------------------------
commit 67c3640a57440a4e9e224e9164ac9f39bdc9376f
Author: Tony Cook <[email protected]>
Date:   Wed Jun 21 15:00:56 2017 +1000

    (perl #131570) don't skip the temps stack entry we just allocated
-----------------------------------------------------------------------

Summary of changes:
 pp_hot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pp_hot.c b/pp_hot.c
index 43ac8a7e89..9ab42b7546 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -1736,7 +1736,7 @@ PP(pp_aassign)
                     if (UNLIKELY(ix >= PL_tmps_max))
                         /* speculatively grow enough to cover other
                          * possible refs */
-                        ix = tmps_grow_p(ix + (lastlelem - lelem));
+                         (void)tmps_grow_p(ix + (lastlelem - lelem));
                     PL_tmps_stack[ix] = ref;
                 }
 

--
Perl5 Master Repository

Reply via email to