summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-06-27 17:58:10 +0200
committerNicholas Clark <nick@ccl4.org>2011-07-01 14:05:40 +0200
commit75fc7bf602cd498829b35780623ebe139c0a0483 (patch)
tree63b0614fc1223a0d33bb7947ab2072a979e9f537 /perl.c
parent56e9eeb1a239fc995bf33475e31f8379bd01cbad (diff)
downloadperl-75fc7bf602cd498829b35780623ebe139c0a0483.tar.gz
Merge PL_scream{first,next} into one allocated buffer.
Effectively, PL_screamnext is now PL_screamfirst + 256. The actual interpreter variable PL_screamnext is eliminated.
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/perl.c b/perl.c
index 417b2fd4b9..00aa02813f 100644
--- a/perl.c
+++ b/perl.c
@@ -910,8 +910,6 @@ perl_destruct(pTHXx)
PL_lastscream = NULL;
Safefree(PL_screamfirst);
PL_screamfirst = 0;
- Safefree(PL_screamnext);
- PL_screamnext = 0;
/* float buffer */
Safefree(PL_efloatbuf);