Loading core/java/android/os/Parcel.java +3 −0 Original line number Diff line number Diff line Loading @@ -4388,6 +4388,9 @@ public final class Parcel { int type = readInt(); if (isLengthPrefixed(type)) { int objectLength = readInt(); if (objectLength < 0) { return null; } int end = MathUtils.addOrThrow(dataPosition(), objectLength); int valueLength = end - start; setDataPosition(end); Loading Loading
core/java/android/os/Parcel.java +3 −0 Original line number Diff line number Diff line Loading @@ -4388,6 +4388,9 @@ public final class Parcel { int type = readInt(); if (isLengthPrefixed(type)) { int objectLength = readInt(); if (objectLength < 0) { return null; } int end = MathUtils.addOrThrow(dataPosition(), objectLength); int valueLength = end - start; setDataPosition(end); Loading