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

Commit 694bd8bf authored by Peng Zhu's avatar Peng Zhu Committed by Wink Saville
Browse files

Add null check at isEmergencyNumber().

Change-Id: I7eca1ba1ce42e02c7506a7d969e4865778bb49cc
parent b87f24a6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1230,6 +1230,9 @@ public class PhoneNumberUtils
     * listed in the ril / sim, then return true, otherwise false.
     */
    public static boolean isEmergencyNumber(String number) {
        // If the number passed in is null, just return false:
        if (number == null) return false;

        // Strip the separators from the number before comparing it
        // to the list.
        number = extractNetworkPortion(number);