last arg of copyOfRange() is index, not length!

here
cpfeiffer 2016-03-20 23:55:48 +01:00
parent f7b71c1f96
commit 275839a7f4
1 changed files with 2 additions and 4 deletions

View File

@ -60,10 +60,8 @@ public abstract class AbstractMiFirmwareInfo {
public abstract boolean isGenerallyCompatibleWith(GBDevice device);
public
@NonNull
byte[] getFirmwareBytes() {
return Arrays.copyOfRange(wholeFirmwareBytes, getFirmwareOffset(), getFirmwareLength());
public @NonNull byte[] getFirmwareBytes() {
return Arrays.copyOfRange(wholeFirmwareBytes, getFirmwareOffset(), getFirmwareOffset() + getFirmwareLength());
}
public int getFirmwareVersionMajor() {