Merge "Fix NPE in ConnectivityService" into klp-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
e568672c9e
@@ -3457,7 +3457,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
|||||||
synchronized (mProxyLock) {
|
synchronized (mProxyLock) {
|
||||||
if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
|
if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
|
||||||
if (mDefaultProxy == proxy) return; // catches repeated nulls
|
if (mDefaultProxy == proxy) return; // catches repeated nulls
|
||||||
if (!proxy.isValid()) {
|
if (proxy != null && !proxy.isValid()) {
|
||||||
if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
|
if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user