1
0
mirror of https://git.tukaani.org/xz.git synced 2025-02-11 19:18:13 +00:00

Added one assert() to process.c of the command line tool.

This commit is contained in:
Lasse Collin 2008-01-14 13:34:29 +02:00
parent 9547e734a0
commit b59ef39737

View File

@ -273,6 +273,7 @@ single(thread_data *t)
if (ret != LZMA_OK) {
if (ret == LZMA_STREAM_END) {
if (opt_mode == MODE_COMPRESS) {
assert(t->pair->src_eof);
success = true;
break;
}