diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2010-07-22 11:50:55 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-07-22 11:50:55 -0700 |
commit | 9869fecb6c4b51ea25ff23ba14bad41bc232340a (patch) | |
tree | 0f518cf611de34bf6b777fd27b99041cf1aa05d9 /telephony | |
parent | e3f84a579cef158e1e767dea82e3e3014de2989d (diff) | |
parent | 4ef923d849ec74c7208eaf650b169b5459276fc2 (diff) | |
download | frameworks_base-9869fecb6c4b51ea25ff23ba14bad41bc232340a.zip frameworks_base-9869fecb6c4b51ea25ff23ba14bad41bc232340a.tar.gz frameworks_base-9869fecb6c4b51ea25ff23ba14bad41bc232340a.tar.bz2 |
am 4ef923d8: am b42aa98d: Merge "Correct VM number updation during MBDN refresh."
Merge commit '4ef923d849ec74c7208eaf650b169b5459276fc2'
* commit '4ef923d849ec74c7208eaf650b169b5459276fc2':
Correct VM number updation during MBDN refresh.
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/internal/telephony/gsm/SIMRecords.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/gsm/SIMRecords.java b/telephony/java/com/android/internal/telephony/gsm/SIMRecords.java index d99a348..30f38bd 100644 --- a/telephony/java/com/android/internal/telephony/gsm/SIMRecords.java +++ b/telephony/java/com/android/internal/telephony/gsm/SIMRecords.java @@ -560,6 +560,13 @@ public final class SIMRecords extends IccRecords { break; case EVENT_GET_CPHS_MAILBOX_DONE: case EVENT_GET_MBDN_DONE: + //Resetting the voice mail number and voice mail tag to null + //as these should be updated from the data read from EF_MBDN. + //If they are not reset, incase of invalid data/exception these + //variables are retaining their previous values and are + //causing invalid voice mailbox info display to user. + voiceMailNum = null; + voiceMailTag = null; isRecordLoadResponse = true; ar = (AsyncResult)msg.obj; |