mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Improve lzma encoder init function consistency.
lzma_encoder_init() did not check for NULL options, but lzma2_encoder_init() did. This is more of a code style improvement than anything else to help make lzma_encoder_init() and lzma2_encoder_init() more similar.
This commit is contained in:
parent
6af9a4cbe5
commit
019afd72e0
1 changed files with 3 additions and 0 deletions
|
@ -712,6 +712,9 @@ static lzma_ret
|
|||
lzma_encoder_init(lzma_lz_encoder *lz, const lzma_allocator *allocator,
|
||||
lzma_vli id, const void *options, lzma_lz_options *lz_options)
|
||||
{
|
||||
if (options == NULL)
|
||||
return LZMA_PROG_ERROR;
|
||||
|
||||
lz->code = &lzma_encode;
|
||||
lz->set_out_limit = &lzma_lzma_set_out_limit;
|
||||
return lzma_lzma_encoder_create(
|
||||
|
|
Loading…
Reference in a new issue