]> wimlib.net Git - wimlib/blobdiff - src/decompress.c
lzx-decompress.c: Fix alignment bug
[wimlib] / src / decompress.c
index 1ef88236a3df38de28c8b569b9fb893881335361..227bfb06e621224e07fe9d6d6ce39fd9348075a6 100644 (file)
@@ -53,7 +53,8 @@
  * @decode_table:      The array in which to create the fast huffman decoding
  *                     table.  It must have a length of at least
  *                     (2**table_bits) + 2 * num_syms to guarantee
- *                     that there is enough space.
+ *                     that there is enough space.  Also must be 16-byte
+ *                     aligned (at least when USE_SSE2_FILL gets defined).
  *
  * @num_syms:          Number of symbols in the alphabet, including symbols
  *                     that do not appear in this particular input chunk.