summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2002-12-19 18:55:43 +0000
committerhv <hv@crypt.org>2003-01-03 11:05:09 +0000
commit235cc2e3b03f7c8478aa5ccdbe27e0aaf735bb46 (patch)
treeedd08b576231ab95592753390c5dcb39f0338063 /scope.c
parent089197fafbcea8edb9a8f7b55a201115f3f2010a (diff)
downloadperl-235cc2e3b03f7c8478aa5ccdbe27e0aaf735bb46.tar.gz
remove flag SvPADBUSY
Message-ID: <20021219185543.C9530@fdgroup.com> p4raw-id: //depot/perl@18409
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index 0896bd49dc..d3a4c3611a 100644
--- a/scope.c
+++ b/scope.c
@@ -920,7 +920,7 @@ Perl_leave_scope(pTHX_ I32 base)
}
}
else { /* Someone has a claim on this, so abandon it. */
- U32 padflags = SvFLAGS(sv) & (SVs_PADBUSY|SVs_PADMY|SVs_PADTMP);
+ U32 padflags = SvFLAGS(sv) & (SVs_PADMY|SVs_PADTMP);
switch (SvTYPE(sv)) { /* Console ourselves with a new value */
case SVt_PVAV: *(SV**)ptr = (SV*)newAV(); break;
case SVt_PVHV: *(SV**)ptr = (SV*)newHV(); break;