зеркало из https://github.com/mozilla/gecko-dev.git
NOT PART OF BUILD. Stop a crash when no content type is specified at all
This commit is contained in:
Родитель
fe4cfbb3e6
Коммит
cad042f00e
|
@ -460,6 +460,11 @@ HRESULT nsPluginHostCtrl::FindPluginPathByContentType(const TCHAR *pszContentTyp
|
|||
{
|
||||
*ppszPluginPath = NULL;
|
||||
|
||||
if (pszContentType == NULL)
|
||||
{
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
// Search the list of plugins for one that will handle the content type
|
||||
TCHAR szPluginPath[_MAX_PATH + 1];
|
||||
unsigned long nContentType = _tcslen(pszContentType);
|
||||
|
|
Загрузка…
Ссылка в новой задаче