1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
-*- org -*-
#+TITLE: Guile-lzlib NEWS – history of user-visible changes
#+STARTUP: content hidestars
Copyright © 2024 Ludovic Courtès <ludo@gnu.org>
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
Please report bugs at <https://notabug.org/guile-lzlib/guile-lzlib>.
* Changes in 0.3.0 (compared to 0.0.2)
** Fix memory leak
Ports returned by =make-lzip-output-port= and =make-lzip-input-port=
would leak memory if not closed explicitly with =close-port=.
In the case of =make-lzip-output-port=, the port would also leak memory
when closed explicitly but the underlying port would throw an exception
while writing to it.
|