aboutsummaryrefslogtreecommitdiff
path: root/src/xz/coder.h
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2011-04-05 15:13:29 +0300
committerLasse Collin <lasse.collin@tukaani.org>2011-04-05 15:13:29 +0300
commit1ef3cf44a8eb9512480af4482a5232ea08363b14 (patch)
tree248727b8e434c8b0a3aa94f2756179e31fe0812f /src/xz/coder.h
parentliblzma: Fix a memory leak in stream_encoder.c. (diff)
downloadxz-1ef3cf44a8eb9512480af4482a5232ea08363b14.tar.xz
xz: Call lzma_end(&strm) before exiting if debugging is enabled.
Diffstat (limited to 'src/xz/coder.h')
-rw-r--r--src/xz/coder.h5
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