You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tika.apache.org by "Bin Hawking (JIRA)" <ji...@apache.org> on 2014/10/12 22:11:33 UTC

[jira] [Created] (TIKA-1448) CHM parser : defect in file extraction

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)