1234567891011121314151617181920212223 |
- -*- 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.
|