diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-14 04:45:01 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-14 04:45:01 +0000 |
commit | 9b94d1ddc3fee7ce145aed1662eaa6ce880eeb97 (patch) | |
tree | f9325cd961e7ef9798bd915feaccde6c449e1b4e /perl.c | |
parent | 0f79a09d62eb410185d697430134f937ab4e917d (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))); |