summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorLarry Wall <lwall@scalpel.netlabs.com>1995-01-13 10:28:56 -0800
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1995-01-11 19:01:11 +0000
commitadbc6bb137ce1026e8a7cba251bb82b41f398aae (patch)
treeec39556272514becaaba581543e7582d62230879 /pp.c
parenta0a2876f4683eca6ebc96f52b47823a87dd0ac4a (diff)
downloadperl-adbc6bb137ce1026e8a7cba251bb82b41f398aae.tar.gz
"unofficial" patches for some of the more spectacular [memory leaks]
To: Simon Parsons <S.Parsons@fulcrum.co.uk> : I am on a Sun sparc running Solaris 5.3 / 5.4 : : Are there any patches available for perl5.000, or a list of know bugs? : I am having problems with a script running out of memory, which may be : causes by memory leaks. The process size grows steadily up to approx : 8Meg (over a couple of minutes) an then grows to approx 22Meg (in 2 or : 3 seconds) before running out of memory. purify indicates memory : leaks, but I am not sure whether this is as a result of perl : abandoning memory as it exits. 5.001 will contain fixes for a number of memory leaks. Here are some unofficial patches for some of the more spectacular ones. The one for sv.c is the likeliest one to be affecting you, unless you're doing a lot of evals.
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 38c9e9728a..23fd79cb5e 100644
--- a/pp.c
+++ b/pp.c
@@ -416,7 +416,7 @@ PP(pp_trans)
sv = GvSV(defgv);
EXTEND(SP,1);
}
- TARG = NEWSV(27,0);
+ TARG = sv_newmortal();
PUSHi(do_trans(sv, op));
RETURN;
}