projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7fe4498
)
POPLOOP is actually doing all the work of Perl_save_padsv() already!
Nicholas Clark [Sat, 26 Jan 2008 16:46:22 +0000 (16:46 +0000)]
p4raw-id: //depot/perl@33078
scope.c
patch
|
blob
|
blame
|
history
diff --git
a/scope.c
b/scope.c
index
c6a3fd5
..
616247e
100644
(file)
--- a/
scope.c
+++ b/
scope.c
@@
-934,7
+934,7
@@
Perl_leave_scope(pTHX_ I32 base)
const PADOFFSET off = (PADOFFSET)SSPOPLONG;
ptr = SSPOPPTR;
if (ptr)
- AvARRAY((PAD*)ptr)[off] = (SV*)SSPOPPTR;
+ assert(AvARRAY((PAD*)ptr)[off] == (SV*)SSPOPPTR);
}
break;
case SAVEt_SAVESWITCHSTACK: