1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Auto decoder cleanup

This commit is contained in:
Lasse Collin 2008-09-02 19:31:42 +03:00
parent 689602336d
commit bab0590504

View file

@ -86,6 +86,7 @@ auto_decode(lzma_coder *coder, lzma_allocator *allocator,
return ret;
coder->sequence = SEQ_FINISH;
}
// Fall through
@ -97,7 +98,6 @@ auto_decode(lzma_coder *coder, lzma_allocator *allocator,
return LZMA_DATA_ERROR;
return action == LZMA_FINISH ? LZMA_STREAM_END : LZMA_OK;
}
default:
assert(0);