X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fxpress-decompress.c;h=5586c15ce006118a2dade85c0a4f7d45a5d6176c;hp=bf2faa1a8ec412f7a7781543df2247d7f6b3f5ac;hb=455edaf71e2a5d6d170ddf7be0bb59a16534cc6a;hpb=768d53aa2bde3b39dfa85fe0dd940d67ae97d5ef diff --git a/src/xpress-decompress.c b/src/xpress-decompress.c index bf2faa1a..5586c15c 100644 --- a/src/xpress-decompress.c +++ b/src/xpress-decompress.c @@ -210,7 +210,8 @@ wimlib_xpress_decompress(const void * restrict _compressed_data, unsigned compre void * restrict uncompressed_data, unsigned uncompressed_len) { u8 lens[XPRESS_NUM_SYMBOLS]; - u16 decode_table[(1 << XPRESS_TABLEBITS) + 2 * XPRESS_NUM_SYMBOLS]; + u16 decode_table[(1 << XPRESS_TABLEBITS) + 2 * XPRESS_NUM_SYMBOLS] + _aligned_attribute(DECODE_TABLE_ALIGNMENT); struct input_bitstream istream; u8 *lens_p; const u8 *compressed_data;