summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-14 04:45:01 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-14 04:45:01 +0000
commit9b94d1ddc3fee7ce145aed1662eaa6ce880eeb97 (patch)
treef9325cd961e7ef9798bd915feaccde6c449e1b4e /perl.c
parent0f79a09d62eb410185d697430134f937ab4e917d (diff)
downloadperl-9b94d1ddc3fee7ce145aed1662eaa6ce880eeb97.tar.gz
remove outdated -DPURIFY code--it reports bogus errors during global
destruction since we actually depend on SVs being in arenas there p4raw-id: //depot/perl@5074
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index 189183647e..bab92b855d 100644
--- a/perl.c
+++ b/perl.c
@@ -1453,7 +1453,7 @@ Perl_call_method(pTHX_ const char *methname, I32 flags)
dSP;
OP myop;
if (!PL_op) {
- myop.op_next = Nullop;
+ Zero(&myop, 1, OP);
PL_op = &myop;
}
XPUSHs(sv_2mortal(newSVpv(methname,0)));