зеркало из https://github.com/mozilla/pjs.git
bug 671799 - check whether mURI is null during @font-face console logging. r=jdaggett
This commit is contained in:
Родитель
d896f6a2e6
Коммит
e9156bfd4d
|
@ -723,7 +723,11 @@ nsUserFontSet::LogMessage(gfxProxyFontEntry *aProxy,
|
|||
|
||||
NS_ConvertUTF16toUTF8 familyName(aProxy->FamilyName());
|
||||
nsCAutoString fontURI;
|
||||
aProxy->mSrcList[aProxy->mSrcIndex].mURI->GetSpec(fontURI);
|
||||
if (aProxy->mSrcList[aProxy->mSrcIndex].mURI) {
|
||||
aProxy->mSrcList[aProxy->mSrcIndex].mURI->GetSpec(fontURI);
|
||||
} else {
|
||||
fontURI.AppendLiteral("(invalid URI)");
|
||||
}
|
||||
|
||||
char weightKeywordBuf[8]; // plenty to sprintf() a PRUint16
|
||||
const char *weightKeyword;
|
||||
|
|
Загрузка…
Ссылка в новой задаче