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

Commit 51213d94 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

am a8a448da: am e568672c: Merge "Fix NPE in ConnectivityService" into klp-dev

* commit 'a8a448da':
  Fix NPE in ConnectivityService
parents 5b950250 a8a448da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3460,7 +3460,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
        synchronized (mProxyLock) {
            if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
            if (mDefaultProxy == proxy) return; // catches repeated nulls
            if (!proxy.isValid()) {
            if (proxy != null &&  !proxy.isValid()) {
                if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
                return;
            }