1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/uzlib: warn about memory leak during compression

This commit is contained in:
Mikolai Gütschow 2024-01-24 11:14:23 +01:00
parent ded97c36f0
commit a9e0a0daa1
No known key found for this signature in database
GPG Key ID: 943E2F37AA659AD5

View File

@ -4,6 +4,10 @@
* @ingroup sys_compression * @ingroup sys_compression
* @brief Deflate/Zlib-compatible LZ77 compression/decompression library * @brief Deflate/Zlib-compatible LZ77 compression/decompression library
* *
* @warning During compression, uzlib allocates memory on the heap without freeing it.
* Do not use this package in production code!
* See https://github.com/pfalcon/uzlib/issues/41#issuecomment-1907807048
*
* # License * # License
* *
* Licensed under zlib. * Licensed under zlib.