am 6152916c: am db011499: am 753d754c: Merge "Fix NPE if mobile is not supported in checkMobileProvisioning." into jb-mr2-dev
* commit '6152916c450942c6eeae8270eb2aed9a16639295': Fix NPE if mobile is not supported in checkMobileProvisioning.
This commit is contained in:
@@ -3564,6 +3564,16 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
|||||||
timeOutMs = CheckMp.MAX_TIMEOUT_MS;
|
timeOutMs = CheckMp.MAX_TIMEOUT_MS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check that mobile networks are supported
|
||||||
|
if (!isNetworkSupported(ConnectivityManager.TYPE_MOBILE)
|
||||||
|
|| !isNetworkSupported(ConnectivityManager.TYPE_MOBILE_HIPRI)) {
|
||||||
|
log("checkMobileProvisioning: X no mobile network");
|
||||||
|
if (resultReceiver != null) {
|
||||||
|
resultReceiver.send(ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION, null);
|
||||||
|
}
|
||||||
|
return timeOutMs;
|
||||||
|
}
|
||||||
|
|
||||||
final long token = Binder.clearCallingIdentity();
|
final long token = Binder.clearCallingIdentity();
|
||||||
try {
|
try {
|
||||||
CheckMp checkMp = new CheckMp(mContext, this);
|
CheckMp checkMp = new CheckMp(mContext, this);
|
||||||
|
|||||||
Reference in New Issue
Block a user