зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1299234 - Fix incorrect if statement block in AppendDistroSearchDirs(). r=mkaply
MozReview-Commit-ID: 4aPyJmHnCJ --HG-- extra : rebase_source : 0cc24cf42d60497e939c7f9b45036d1ee904334b
This commit is contained in:
Родитель
f43904382f
Коммит
c1239042db
|
@ -117,11 +117,12 @@ AppendDistroSearchDirs(nsIProperties* aDirSvc, nsCOMArray<nsIFile> &array)
|
||||||
|
|
||||||
defLocalePlugins->AppendNative(defLocale);
|
defLocalePlugins->AppendNative(defLocale);
|
||||||
rv = defLocalePlugins->Exists(&exists);
|
rv = defLocalePlugins->Exists(&exists);
|
||||||
if (NS_SUCCEEDED(rv) && exists)
|
if (NS_SUCCEEDED(rv) && exists) {
|
||||||
array.AppendObject(defLocalePlugins);
|
array.AppendObject(defLocalePlugins);
|
||||||
return; // all done
|
return; // all done
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// we didn't have a defaultLocale, use the user agent locale
|
// we didn't have a defaultLocale, use the user agent locale
|
||||||
nsCString locale;
|
nsCString locale;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче