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

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

Merge "Security fix for byte slices" am: e7d1f5ee am: 436b2d55

parents ca9cb21a 436b2d55
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));
            }
        }