summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-21 04:22:53 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-21 04:22:53 +0000
commit62b1ebc20082e645ed8e8a0cc6c1ebf91577cd34 (patch)
tree880cb809ce1170ad97ddd35686c92e3a40b4b65a /av.c
parent779c5bc9b377ace543a8d55375152f3503319113 (diff)
downloadperl-62b1ebc20082e645ed8e8a0cc6c1ebf91577cd34.tar.gz
fix handling of mayhaps-extended @_ in goto &sub
p4raw-id: //depot/perl@2030
Diffstat (limited to 'av.c')
-rw-r--r--av.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/av.c b/av.c
index af463cb3aa..5242ffc887 100644
--- a/av.c
+++ b/av.c
@@ -41,6 +41,7 @@ av_reify(AV *av)
key = AvARRAY(av) - AvALLOC(av);
while (key)
AvALLOC(av)[--key] = &PL_sv_undef;
+ AvREIFY_off(av);
AvREAL_on(av);
}