diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2010-07-22 11:38:05 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2010-07-22 11:38:05 -0700 |
commit | b42aa98d44f1ad22746005264274220770de2756 (patch) | |
tree | 3b86231745eea1721b71bfcb74b07bfca3946680 /telephony/java | |
parent | f34a7fbbbeb9c7855327afbbb18b7d9893866475 (diff) | |
parent | 3d59f8b41874e5e1183e236b7b079a0a0c510f6c (diff) | |
download | frameworks_base-b42aa98d44f1ad22746005264274220770de2756.zip frameworks_base-b42aa98d44f1ad22746005264274220770de2756.tar.gz frameworks_base-b42aa98d44f1ad22746005264274220770de2756.tar.bz2 |
Merge "Correct VM number updation during MBDN refresh."
Diffstat (limited to 'telephony/java')
-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; |