Bin Hawking created TIKA-1448: --------------------------------- Summary: CHM parser : defect in file extraction Key: TIKA-1448 URL: https://issues.apache.org/jira/browse/TIKA-1448 Project: Tika Issue Type: Bug Components: parser Affects Versions: 1.7 Reporter: Bin Hawking
in ChmBlockInfo class: chmBlockInfo .setIniBlock((chmBlockInfo.startBlock - chmBlockInfo.startBlock) % (int) clcd.getResetInterval()); always sets 0 according to the lzx algorithm, should be chmBlockInfo .setIniBlock( chmBlockInfo.startBlock - chmBlockInfo.startBlock % (int) clcd.getResetInterval()); -- This message was sent by Atlassian JIRA (v6.3.4#6332)