diff options
| author | Banavathu, Srinivas Naik <snb@codeaurora.org> | 2010-08-06 12:47:50 +0530 |
|---|---|---|
| committer | Banavathu Srinivas Naik <snb@codeaurora.org> | 2010-08-23 22:03:28 -0700 |
| commit | f3ee6f87a344b185d8bde12c77440c9020378510 (patch) | |
| tree | 4169e50260e47469579ce2bb30b00d787650cd41 /telephony | |
| parent | b998f3111df82149567935138945500f33451b1a (diff) | |
| download | frameworks_base-f3ee6f87a344b185d8bde12c77440c9020378510.zip frameworks_base-f3ee6f87a344b185d8bde12c77440c9020378510.tar.gz frameworks_base-f3ee6f87a344b185d8bde12c77440c9020378510.tar.bz2 | |
Telephony: Remove references to mExitECMRunnable object.
Free mExitECMRunnable object while destroying CDMA phone.
Change-Id: I411b3e5e41a9cc76c3571a98f13f91d84523f623
Diffstat (limited to 'telephony')
| -rwxr-xr-x | telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java b/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java index 27eae22..7aecf5b 100755 --- a/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java +++ b/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java @@ -224,6 +224,7 @@ public class CDMAPhone extends PhoneBase { mCM.unregisterForNVReady(this); //EVENT_NV_READY mSST.unregisterForNetworkAttach(this); //EVENT_REGISTERED_TO_NETWORK mCM.unSetOnSuppServiceNotification(this); + removeCallbacks(mExitEcmRunnable); mPendingMmis.clear(); @@ -256,6 +257,7 @@ public class CDMAPhone extends PhoneBase { this.mSST = null; this.mEriManager = null; this.mCcatService = null; + this.mExitEcmRunnable = null; } protected void finalize() { |
