Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 436b2d55 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Security fix for byte slices" am: e7d1f5ee

parents 63993ee3 e7d1f5ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ public final class ScanFilter implements Parcelable {
            dest.writeInt(mAddressType);
            dest.writeInt(mIrk == null ? 0 : 1);
            if (mIrk != null) {
                dest.writeByteArray(mIrk);
                dest.writeByteArray(Arrays.copyOfRange(mIrk, 0, 16 + 1));
            }
        }