summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-07-02 12:35:12 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-07-02 12:35:12 +0000
commit9320a0378277d341c9c126313f5ba5a16b26450d (patch)
tree98261556de5a5f397a8c3d441dffb6fd8f357318 /pp_hot.c
parent43c5f42db1e336a99904bcc798b7070727bfbd0a (diff)
downloadperl-9320a0378277d341c9c126313f5ba5a16b26450d.tar.gz
missed one PAD_SET_CUR
p4raw-id: //depot/perl@25046
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 13811f668d..6d66bebda3 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;