aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/stream_decoder_mt.c
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2022-08-17 17:59:51 +0800
committerJia Tan <jiat0218@gmail.com>2023-01-02 22:20:04 +0800
commit203b008eb220208981902e0db541c02d1c1c9f5e (patch)
treed64b2557c269175d43a031932ccb2ed068abe25f /src/liblzma/common/stream_decoder_mt.c
parentTests: test_check: Test corner cases of CLMUL CRC64. (diff)
downloadxz-203b008eb220208981902e0db541c02d1c1c9f5e.tar.xz
liblzma: Replaced hardcoded 0x0 index indicator byte with macro
Diffstat (limited to '')
-rw-r--r--src/liblzma/common/stream_decoder_mt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/stream_decoder_mt.c b/src/liblzma/common/stream_decoder_mt.c
index 5733c764..fd5cd7fd 100644
--- a/src/liblzma/common/stream_decoder_mt.c
+++ b/src/liblzma/common/stream_decoder_mt.c
@@ -887,7 +887,7 @@ decode_block_header(struct lzma_stream_coder *coder,
if (coder->pos == 0) {
// Detect if it's Index.
- if (in[*in_pos] == 0x00)
+ if (in[*in_pos] == INDEX_INDICATOR)
return LZMA_INDEX_DETECTED;
// Calculate the size of the Block Header. Note that