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

Commit f03af89a authored by yinxu's avatar yinxu Committed by android-build-merger
Browse files

Merge "Check whether the NetworkScanRequest is null" am: c866efc6 am: c2f22c14

am: 848a9cbd

Change-Id: I087ae9a7e95a260fd43125b2c379acf2e82e8958
parents 054443bb 848a9cbd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ public final class NetworkScanRequestTracker {
    }

    private boolean isValidScan(NetworkScanRequestInfo nsri) {
        if (nsri.mRequest.specifiers == null) {
        if (nsri.mRequest == null || nsri.mRequest.specifiers == null) {
            return false;
        }
        if (nsri.mRequest.specifiers.length > NetworkScanRequest.MAX_RADIO_ACCESS_NETWORKS) {