Mime magic logic for Little16 is incorrect
------------------------------------------

                 Key: TIKA-794
                 URL: https://issues.apache.org/jira/browse/TIKA-794
             Project: Tika
          Issue Type: Bug
          Components: mime
    Affects Versions: 1.0
            Reporter: Nick Burch
            Assignee: Nick Burch


The mime magic logic for big16 and little16 seems to be the same:

         } else if (type.equals("host16") || type.equals("little16")) {
             int i = Integer.parseInt(tmpVal, radix);
             decoded = new byte[] { (byte) (i >> 8), (byte) (i & 0x00FF) };
         } else if (type.equals("big16")) {
             int i = Integer.parseInt(tmpVal, radix);
             decoded = new byte[] { (byte) (i >> 8), (byte) (i & 0x00FF) };

It looks like both are calculating the big endian version, which is breaking 
CPIO detection

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to