b=511808; followup patch, ensure that we GetBoolPref succeeded before enabling ciphers; r=johnath,r=wtc

This commit is contained in:
Vladimir Vukicevic 2009-08-27 10:20:17 -07:00
Родитель fdb74ffe70
Коммит 2028a07921
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1669,7 +1669,9 @@ nsNSSComponent::InitializeNSS(PRBool showWarningBox)
// Now only set SSL/TLS ciphers we knew about at compile time
for (CipherPref* cp = CipherPrefs; cp->pref; ++cp) {
mPrefBranch->GetBoolPref(cp->pref, &enabled);
rv = mPrefBranch->GetBoolPref(cp->pref, &enabled);
if (NS_FAILED(rv))
enabled = PR_FALSE;
SSL_CipherPrefSetDefault(cp->id, enabled);
}