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 /perl.h | |
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 'perl.h')
-rw-r--r-- | perl.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2063,6 +2063,9 @@ enum { nice_chunk = (char*)(chunk); \ nice_chunk_size = (chunk_size); \ } \ + else { \ + Safefree(chunk); \ + } \ UNLOCK_SV_MUTEX; \ } while (0) |