diff options
Diffstat (limited to 'src/liblzma/lz')
-rw-r--r-- | src/liblzma/lz/lz_decoder.c | 2 | ||||
-rw-r--r-- | src/liblzma/lz/lz_encoder.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/lz/lz_decoder.c b/src/liblzma/lz/lz_decoder.c index 5c3f1d18..0344ae6a 100644 --- a/src/liblzma/lz/lz_decoder.c +++ b/src/liblzma/lz/lz_decoder.c @@ -220,7 +220,7 @@ lzma_lz_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, // recommended to give aligned buffers to liblzma. // // Avoid integer overflow. FIXME Should the return value be - // LZMA_HEADER_ERROR or LZMA_MEM_ERROR? + // LZMA_OPTIONS_ERROR or LZMA_MEM_ERROR? if (dict_size > SIZE_MAX - 15) return LZMA_MEM_ERROR; diff --git a/src/liblzma/lz/lz_encoder.c b/src/liblzma/lz/lz_encoder.c index 067f12c7..29a19a5d 100644 --- a/src/liblzma/lz/lz_encoder.c +++ b/src/liblzma/lz/lz_encoder.c @@ -497,7 +497,7 @@ lzma_lz_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, // Setup the size information into next->coder->mf and deallocate // old buffers if they have wrong size. if (lz_encoder_prepare(&next->coder->mf, allocator, &lz_options)) - return LZMA_HEADER_ERROR; + return LZMA_OPTIONS_ERROR; // Allocate new buffers if needed, and do the rest of // the initialization. |