projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8f01dc6
)
stop PL_op and PL_curpad referring to different pads at start of doeval
Dave Mitchell [Sun, 16 Apr 2006 23:07:13 +0000 (23:07 +0000)]
(this could make find_uninit_var do Bad Things)
p4raw-id: //depot/perl@27853
pp_ctl.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_ctl.c
b/pp_ctl.c
index
d783e1f
..
f88e91d
100644
(file)
--- a/
pp_ctl.c
+++ b/
pp_ctl.c
@@
-2898,6
+2898,7
@@
S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq)
/* set up a scratch pad */
CvPADLIST(PL_compcv) = pad_new(padnew_SAVE);
+ PL_op = NULL; /* avoid PL_op and PL_curpad referring to different CVs */
if (!PL_madskills)