-
Bug
-
Resolution: Done
-
Major
-
1.3.0.Final
-
None
In ByteIterator.getLE64(), the 52 should below should be 56:
return (long) next() | (long) next() << 8 | (long) next() << 16 | (long) next() << 24 | (long) next() << 32 | (long) next() << 40 | (long) next() << 48 | (long) next() << 52;
(The same problem like WFCOM-27 but for LE)