зеркало из https://github.com/mozilla/gecko-dev.git
Bug 484579 - nsIMIMEService.getTypeFromExtension may fail unexpectedly on Windows when "Content Type" is empty in the registry; r=(robert.bugzilla + sdwilsh) sr=bzbarsky
This commit is contained in:
Родитель
609b7f95ab
Коммит
352d6bbf6e
|
@ -535,7 +535,7 @@ already_AddRefed<nsMIMEInfoWin> nsOSHelperAppService::GetByExtension(const nsAFl
|
|||
else {
|
||||
nsAutoString temp;
|
||||
if (NS_FAILED(regKey->ReadStringValue(NS_LITERAL_STRING("Content Type"),
|
||||
temp))) {
|
||||
temp)) || temp.IsEmpty()) {
|
||||
return nsnull;
|
||||
}
|
||||
// Content-Type is always in ASCII
|
||||
|
|
Загрузка…
Ссылка в новой задаче