зеркало из https://github.com/mozilla/gecko-dev.git
188438, Null-check the right variable. r+sr=bzbarsky
This commit is contained in:
Родитель
4e7d341bb9
Коммит
09d5d24460
|
@ -199,17 +199,18 @@ nsTextBoxFrame::AlwaysAppendAccessKey()
|
|||
{
|
||||
if (!gAccessKeyPrefInitialized)
|
||||
{
|
||||
gAccessKeyPrefInitialized = PR_TRUE;
|
||||
|
||||
nsCOMPtr<nsIPrefBranch> prefBranch =
|
||||
do_GetService(NS_PREFSERVICE_CONTRACTID);
|
||||
|
||||
gAccessKeyPrefInitialized = PR_TRUE;
|
||||
if (prefBranch)
|
||||
{
|
||||
nsCOMPtr<nsIPrefLocalizedString> prefValue;
|
||||
prefBranch->GetComplexValue("intl.menuitems.alwaysappendacceskeys",
|
||||
NS_GET_IID(nsIPrefLocalizedString),
|
||||
getter_AddRefs(prefValue));
|
||||
if (prefBranch)
|
||||
if (prefValue)
|
||||
{
|
||||
nsXPIDLString prefString;
|
||||
prefValue->ToString(getter_Copies(prefString));
|
||||
|
|
Загрузка…
Ссылка в новой задаче