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

Commit 75c567a8 authored by Android Code Review's avatar Android Code Review
Browse files

Merge change 10327

* changes:
  Logical error. If multiple receivers are dead, only the first one will be added. found in http://code.google.com/p/android/issues/detail?id=2651
parents e79c007e 8c0ff13f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -836,8 +836,8 @@ public class LocationManagerService extends ILocationManager.Stub
                        } catch (PendingIntent.CanceledException e) {
                            if (deadReceivers == null) {
                                deadReceivers = new ArrayList<Receiver>();
                                deadReceivers.add(receiver);
                            }
                            deadReceivers.add(receiver);
                        }
                    }
                } catch (RemoteException e) {