projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9fee9b
)
fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
author
Gurusamy Sarathy
<gsar@cpan.org>
Tue, 4 Jul 2000 04:07:46 +0000
(
04:07
+0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Tue, 4 Jul 2000 04:07:46 +0000
(
04:07
+0000)
p4raw-id: //depot/perl@6297
perl.c
patch
|
blob
|
history
diff --git
a/perl.c
b/perl.c
index
ade1d3c
..
eb454b9
100644
(file)
--- a/
perl.c
+++ b/
perl.c
@@
-716,6
+716,8
@@
perl_destruct(pTHXx)
Safefree(PL_reg_poscache);
Safefree(HeKEY_hek(&PL_hv_fetch_ent_mh));
Safefree(PL_op_mask);
+ Safefree(PL_psig_ptr);
+ Safefree(PL_psig_name);
nuke_stacks();
PL_hints = 0; /* Reset hints. Should hints be per-interpreter ? */