commit | 500b0e04406d2995c1f29dea95c98cedaa669f74 | [log] [tgz] |
---|---|---|
author | Santos Cordon <santoscordon@google.com> | Tue Jun 17 10:33:33 2014 -0700 |
committer | Santos Cordon <santoscordon@google.com> | Tue Jun 17 10:33:33 2014 -0700 |
tree | b25b67a9d5193205601bc945cda73fdc17400042 | |
parent | 8479c19a2d1205021b6c336ef365436749d2a5e2 [diff] [blame] |
Fix infinite recursion. Bug: 15695506 Change-Id: Id6b16db87ce9cbf980b601799710977205ac53cd
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java index c71ea79..d6f9071 100644 --- a/src/com/android/phone/PhoneInterfaceManager.java +++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -471,7 +471,7 @@ * @see #sendRequestAsync */ private Object sendRequest(int command, Object argument) { - return sendRequest(command, argument); + return sendRequest(command, argument, null); } /**