Bug 377053. Don't return a local string object to callers of gfxQuartzFontCache::GetPostscriptNameForFontID. r=vlad

This commit is contained in:
roc+%cs.cmu.edu 2007-04-12 00:19:35 +00:00
Родитель 78645e6a98
Коммит e9d3e75e92
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -762,7 +762,7 @@ gfxQuartzFontCache::GetPostscriptNameForFontID(ATSUFontID fid)
if (!mFontIDTable.Get(PRUint32(fid), &fe)) {
NS_WARNING("Invalid font");
return NS_LITERAL_STRING("INVALID_FONT");
return EmptyString();
}
return fe->Name();