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

Commit 9bcae821 authored by Grant Menke's avatar Grant Menke Committed by Android (Google) Code Review
Browse files

Merge "Avoid NPE in RadioConfigProxy." into main

parents 17c79855 55b7e92e
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -281,7 +281,11 @@ public class RadioConfigProxy {
        }

        public void linkToDeath(long cookie) throws RemoteException {
            if (mService != null) {
                mService.linkToDeath(this, cookie);
            } else {
                Rlog.w(TAG, "linkToDeath: skipping since mService is null");
            }
        }

        public void clear() {
@@ -316,7 +320,11 @@ public class RadioConfigProxy {
        }

        public void linkToDeath(int cookie) throws RemoteException {
            if (mService != null) {
                mService.linkToDeath(this, cookie);
            } else {
                Rlog.w(TAG, "linkToDeath: skipping since mService is null");
            }
        }

        public void clear() {