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

Commit cbc08a56 authored by Amit Mahajan's avatar Amit Mahajan Committed by android-build-merger
Browse files

Merge "Add null check for UiccSlot."

am: 4d38939d

Change-Id: I33050df17fc1ca7cbd3ce79966391111b3dbc17f
parents be33d636 4d38939d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -722,6 +722,7 @@ public class UiccController extends Handler {
        ArrayList<UiccCardInfo> infos = new ArrayList<>();
        for (int slotIndex = 0; slotIndex < mUiccSlots.length; slotIndex++) {
            final UiccSlot slot = mUiccSlots[slotIndex];
            if (slot == null) continue;
            boolean isEuicc = slot.isEuicc();
            String eid = null;
            UiccCard card = slot.getUiccCard();