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

liblzma: Remove outdated comments.

This commit is contained in:
Lasse Collin 2012-04-19 15:25:26 +03:00
parent f55db9c187
commit 7c3ba2ed5c
2 changed files with 1 additions and 5 deletions

View file

@ -35,9 +35,6 @@ copy_or_code(lzma_coder *coder, lzma_allocator *allocator,
} else { } else {
// Call the next coder in the chain to provide us some data. // Call the next coder in the chain to provide us some data.
// We don't care about uncompressed_size here, because
// the next filter in the chain will do it for us (since
// we don't change the size of the data).
const lzma_ret ret = coder->next.code( const lzma_ret ret = coder->next.code(
coder->next.coder, allocator, coder->next.coder, allocator,
in, in_pos, in_size, in, in_pos, in_size,

View file

@ -22,8 +22,7 @@ struct lzma_coder_s {
/// Next filter in the chain /// Next filter in the chain
lzma_next_coder next; lzma_next_coder next;
/// True if the next coder in the chain has returned LZMA_STREAM_END /// True if the next coder in the chain has returned LZMA_STREAM_END.
/// or if we have processed uncompressed_size bytes.
bool end_was_reached; bool end_was_reached;
/// True if filter() should encode the data; false to decode. /// True if filter() should encode the data; false to decode.