From: Dave Mitchell Date: Sat, 2 Jul 2005 12:35:12 +0000 (+0000) Subject: missed one PAD_SET_CUR X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9320a0378277d341c9c126313f5ba5a16b26450d;p=p5sagit%2Fp5-mst-13.2.git missed one PAD_SET_CUR p4raw-id: //depot/perl@25046 --- diff --git a/pp_hot.c b/pp_hot.c index 13811f6..6d66beb 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -2678,7 +2678,8 @@ PP(pp_entersub) PERL_STACK_OVERFLOW_CHECK(); pad_push(padlist, CvDEPTH(cv)); } - PAD_SET_CUR(padlist, CvDEPTH(cv)); + SAVECOMPPAD(); + PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); if (hasargs) { AV* av;