Fix bug in ByteArrayInput.readLong

Thanks to deuns.martinez for reporting this fix

git-svn-id: https://smali.googlecode.com/svn/trunk@808 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
jesusfreke@jesusfreke.com 2011-05-15 17:06:57 +00:00
parent 817f2e0a76
commit 7ed253b78b

View File

@ -120,7 +120,7 @@ public class ByteArrayInput
((data[readAt++] & 0xffL) << 32) |
((data[readAt++] & 0xffL) << 40) |
((data[readAt++] & 0xffL) << 48) |
((data[readAt++] & 0xffL) << 58);
((data[readAt++] & 0xffL) << 56);
cursor = readAt;
return result;
}