]> wimlib.net Git - wimlib/blobdiff - src/lzx_decompress.c
lzx_common: rename to lzx_preprocess/lzx_postprocess
[wimlib] / src / lzx_decompress.c
index 687420a9a75d8c4e6042e32a13556e051c8dcbc8..9a030759192caa9e63a548c8af340474c953b733 100644 (file)
@@ -603,7 +603,7 @@ lzx_decompress(const void *restrict compressed_data, size_t compressed_size,
 
        /* Postprocess the data unless it cannot possibly contain 0xe8 bytes  */
        if (may_have_e8_byte)
-               lzx_undo_e8_preprocessing(uncompressed_data, uncompressed_size);
+               lzx_postprocess(uncompressed_data, uncompressed_size);
 
        return 0;
 }