• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

frameworks/base


Commit MetaInfo

修订版75c567a8dc16634477962f9bafa5205948b974c3 (tree)
时间2009-06-11 09:03:05
作者Android Code Review <code-review@andr...>
CommiterAndroid Code Review

Log Message

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

更改概述

差异

--- a/services/java/com/android/server/LocationManagerService.java
+++ b/services/java/com/android/server/LocationManagerService.java
@@ -836,8 +836,8 @@ public class LocationManagerService extends ILocationManager.Stub
836836 } catch (PendingIntent.CanceledException e) {
837837 if (deadReceivers == null) {
838838 deadReceivers = new ArrayList<Receiver>();
839- deadReceivers.add(receiver);
840839 }
840+ deadReceivers.add(receiver);
841841 }
842842 }
843843 } catch (RemoteException e) {