-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.12.0
-
Fix Version/s: 0.12.0
-
Component/s: None
-
Labels:
-
Release Note:Fix off-by-one regression RCFile::sync(long) resulting in skipped sync points.
this has a bug in this:
System.arraycopy(buffer, buffer.length - prefix - 1, buffer, 0, prefix);
it should be
System.arraycopy(buffer, buffer.length - prefix, buffer, 0, prefix);
it is missing 1 byte at the end.