summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-01-18 19:16:55 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-01-18 21:29:02 -0800
commitbfa371b621d09f1ad1e588c4feaaadf9f20dc1c9 (patch)
treeec84f892d7c6792ff958a56580c107835ad4a520
parentf60e676307b23b6eadcbba505b4f71838fe212a2 (diff)
downloadperl-bfa371b621d09f1ad1e588c4feaaadf9f20dc1c9.tar.gz
[perl #119949] Stop undef *_, goto &sub from crashing
Commit 049bd5ffd62b fixed problems with the wrong @_ being visible after *_ modification followed by goto. In so doing, it made it possible for a null to be placed at the start of the target sub’s pad, because it was not checking that the array it got from PL_defgv was actually non-null. Simply adding the check makes everything work.
-rw-r--r--pp_ctl.c6
-rw-r--r--t/op/goto.t19
2 files changed, 22 insertions, 3 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 2b7b3a9fb4..d0a56bab84 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2932,8 +2932,10 @@ PP(pp_goto) /* also pp_dump */
to freed memory as the result of undef *_. So put
it in the callee’s pad, donating our refer-
ence count. */
- SvREFCNT_dec(PAD_SVl(0));
- PAD_SVl(0) = (SV *)(cx->blk_sub.argarray = arg);
+ if (arg) {
+ SvREFCNT_dec(PAD_SVl(0));
+ PAD_SVl(0) = (SV *)(cx->blk_sub.argarray = arg);
+ }
/* GvAV(PL_defgv) might have been modified on scope
exit, so restore it. */
diff --git a/t/op/goto.t b/t/op/goto.t
index 5c96f8ba5e..13e6b042ab 100644
--- a/t/op/goto.t
+++ b/t/op/goto.t
@@ -10,7 +10,7 @@ BEGIN {
use warnings;
use strict;
-plan tests => 92;
+plan tests => 94;
our $TODO;
my $deprecated = 0;
@@ -498,6 +498,23 @@ eval { & { sub { goto &utf8::encode } } };
# *_{ARRAY} was untouched, too.
is *_{ARRAY}, undef, 'goto &xsub when @_ does not exist';
+# goto &perlsub when @_ itself does not exist [perl #119949]
+# This was only crashing when the replaced sub call had an argument list.
+# (I.e., &{ sub { goto ... } } did not crash.)
+sub {
+ undef *_;
+ goto sub {
+ is *_{ARRAY}, undef, 'goto &perlsub when @_ does not exist';
+ }
+}->();
+sub {
+ local *_;
+ goto sub {
+ is *_{ARRAY}, undef, 'goto &sub when @_ does not exist (local *_)';
+ }
+}->();
+
+
# [perl #36521] goto &foo in warn handler could defeat recursion avoider
{