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

Commit 6ba7ae1e authored by Mike Lockwood's avatar Mike Lockwood
Browse files

LocationManagerService: Fix null pointer check in sendExtraCommand().

parent 0ff7a463
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1110,7 +1110,7 @@ public class LocationManagerService extends ILocationManager.Stub implements Run

        synchronized (mLock) {
            LocationProviderProxy proxy = mProvidersByName.get(provider);
            if (provider == null) {
            if (proxy == null) {
                return false;
            }