projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
43c5f42
)
missed one PAD_SET_CUR
Dave Mitchell [Sat, 2 Jul 2005 12:35:12 +0000 (12:35 +0000)]
p4raw-id: //depot/perl@25046
pp_hot.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_hot.c
b/pp_hot.c
index
13811f6
..
6d66beb
100644
(file)
--- 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;