1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02: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;
}