mirror of
https://github.com/revanced/smali.git
synced 2025-05-04 16:44:25 +02:00
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:
parent
817f2e0a76
commit
7ed253b78b
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user