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

Commit 19dc833c authored by kun.tang's avatar kun.tang Committed by android-build-merger
Browse files

Merge "Fixed NullPointerException when parseEfSpdi." am: 3b2aa31a

am: 2063878d

Change-Id: I94608a8b99028a67a3cbcc0dc54d3d93c389c2cd
parents 52ba1250 2063878d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2052,7 +2052,7 @@ public class SIMRecords extends IccRecords {
            plmnCode = IccUtils.bcdPlmnToString(plmnEntries, i);

            // Valid operator codes are 5 or 6 digits
            if (plmnCode.length() >= 5) {
            if (plmnCode != null && plmnCode.length() >= 5) {
                log("EF_SPDI network: " + plmnCode);
                mSpdiNetworks.add(plmnCode);
            }