diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2003-08-07 16:53:35 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-07 19:59:18 +0000 |
commit | 2740392c45d51e34cd904b51afcc00544a78cf82 (patch) | |
tree | 3973742d21b9566374f272b2023bb7706f3db140 /scope.c | |
parent | f695f0e6874001cf0696a1b1ec3411efe80ba2a9 (diff) | |
download | perl-2740392c45d51e34cd904b51afcc00544a78cf82.tar.gz |
Fwd: Re: [PATCH] flags set incorrectly on abandoned lexicals
Message-ID: <20030807145335.GF26683@fdgroup.com>
p4raw-id: //depot/perl@20559
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -945,7 +945,7 @@ Perl_leave_scope(pTHX_ I32 base) SvREFCNT_dec(sv); /* Cast current value to the winds. */ /* preserve pad nature, but also mark as not live * for any closure capturing */ - SvFLAGS(*(SV**)ptr) |= padflags & SVs_PADSTALE; + SvFLAGS(*(SV**)ptr) |= padflags | SVs_PADSTALE; } break; case SAVEt_DELETE: |