diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-05 23:32:33 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-05 23:32:33 +0000 |
commit | fc80cf79f6ce54c5e5487bc877eda643ef0d8104 (patch) | |
tree | db36525101f047e5bb8fd1b968f6759a3629176c /sv.c | |
parent | 8931a351763bab7adf45abbc170bb711ffddf83b (diff) | |
download | perl-fc80cf79f6ce54c5e5487bc877eda643ef0d8104.tar.gz |
[win32] fix memory leaks in offer_nice_chunk()
p4raw-id: //depot/win32/perl@882
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -400,6 +400,10 @@ sv_free_arenas(void) Safefree((void *)sva); } + if (nice_chunk) + Safefree(nice_chunk); + nice_chunk = Nullch; + nice_chunk_size = 0; sv_arenaroot = 0; sv_root = 0; } |