iccOpenLogicalChannel: Fix for no return value.

Need to return the IccOpenLogicalChannelReponse object.

Change-Id: Ia3817ed93221e2c178e1ea40dd2e16bcc4132d77
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index 02a9c1f..16e39e5 100644
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -462,6 +462,7 @@
                         openChannelResp = new IccOpenLogicalChannelResponse(
                             IccOpenLogicalChannelResponse.INVALID_CHANNEL, errorCode, null);
                     }
+                    request.result = openChannelResp;
                     synchronized (request) {
                         request.notifyAll();
                     }