liblzma: Fix one more unaligned read to use unaligned_read16ne().
This commit is contained in:
parent
ce59b34ec9
commit
6a73a78895
|
@ -39,7 +39,7 @@
|
||||||
// Endianness doesn't matter in hash_2_calc() (no effect on the output).
|
// Endianness doesn't matter in hash_2_calc() (no effect on the output).
|
||||||
#ifdef TUKLIB_FAST_UNALIGNED_ACCESS
|
#ifdef TUKLIB_FAST_UNALIGNED_ACCESS
|
||||||
# define hash_2_calc() \
|
# define hash_2_calc() \
|
||||||
const uint32_t hash_value = *(const uint16_t *)(cur)
|
const uint32_t hash_value = unaligned_read16ne(cur)
|
||||||
#else
|
#else
|
||||||
# define hash_2_calc() \
|
# define hash_2_calc() \
|
||||||
const uint32_t hash_value \
|
const uint32_t hash_value \
|
||||||
|
|
Loading…
Reference in New Issue