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

This commit is contained in:
cpfeiffer
2016-03-21 04:18:45 +01:00
parent f7b71c1f96
commit 275839a7f4
@@ -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() {