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

Commit 5dd98cc0 authored by Mike Lockwood's avatar Mike Lockwood Committed by Android Git Automerger
Browse files

am 6ba7ae1e: LocationManagerService: Fix null pointer check in sendExtraCommand().

Merge commit '6ba7ae1e'

* commit '6ba7ae1e':
  LocationManagerService: Fix null pointer check in sendExtraCommand().
parents f4f266cb 6ba7ae1e
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;
            }