Bug 895960 - Part 1: Patch. r=hsinyi

This commit is contained in:
Yoshi Huang 2013-07-23 14:34:30 +08:00
parent fe634908e9
commit 9575de9cae

View File

@ -10974,12 +10974,7 @@ let ICCRecordHelper = {
}
Buf.readStringDelimiter(strLen);
if (pbrTlvs.length === 0) {
let error = onerror || debug;
error("Cannot access Phonebook.");
return;
}
if (pbrTlvs.length > 0) {
let pbr = ICCUtilsHelper.parsePbrTlvs(pbrTlvs);
// EF_ADN is mandatory if and only if DF_PHONEBOOK is present.
if (!pbr.adn) {
@ -10988,6 +10983,7 @@ let ICCRecordHelper = {
return;
}
pbrs.push(pbr);
}
if (options.p1 < options.totalRecords) {
ICCIOHelper.loadNextRecord(options);
@ -12414,6 +12410,11 @@ let ICCContactHelper = {
let gotPbrCb = function gotPbrCb(pbrs) {
let pbrIndex = Math.floor(contact.recordId / ICC_MAX_LINEAR_FIXED_RECORDS);
let pbr = pbrs[pbrIndex];
if (!pbr) {
let error = onerror || debug;
error("Cannot access Phonebook.");
return;
}
this.updatePhonebookSet(pbr, contact, onsuccess, onerror);
}.bind(this);