diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-04-05 15:13:29 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-04-05 15:13:29 +0300 |
commit | 1ef3cf44a8eb9512480af4482a5232ea08363b14 (patch) | |
tree | 248727b8e434c8b0a3aa94f2756179e31fe0812f /src/xz/coder.h | |
parent | liblzma: Fix a memory leak in stream_encoder.c. (diff) | |
download | xz-1ef3cf44a8eb9512480af4482a5232ea08363b14.tar.xz |
xz: Call lzma_end(&strm) before exiting if debugging is enabled.
Diffstat (limited to '')
-rw-r--r-- | src/xz/coder.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xz/coder.h b/src/xz/coder.h index 7edca039..35000438 100644 --- a/src/xz/coder.h +++ b/src/xz/coder.h @@ -65,3 +65,8 @@ extern void coder_set_compression_settings(void); /// Compress or decompress the given file extern void coder_run(const char *filename); + +#ifndef NDEBUG +/// Free the memory allocated for the coder and kill the worker threads. +extern void coder_free(void); +#endif |