NEWS 825 B

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