mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Remove uninitialized compiler warning.
This commit is contained in:
parent
1ff2e35e84
commit
4d688e3275
1 changed files with 5 additions and 1 deletions
|
|
@ -412,7 +412,11 @@ build_filter_spec(const lzma_filter *f)
|
|||
ADD_FIELD(options, lc);
|
||||
ADD_FIELD(options, lp);
|
||||
ADD_FIELD(options, pb);
|
||||
case LZMA_FILTER_LZMA2:
|
||||
ADD_FIELD(options, dict_size);
|
||||
break;
|
||||
}
|
||||
case LZMA_FILTER_LZMA2: {
|
||||
lzma_options_lzma *options = f->options;
|
||||
ADD_FIELD(options, dict_size);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue