NOT PART OF BUILD. Stop a crash when no content type is specified at all

This commit is contained in:
locka%iol.ie 2001-10-29 20:02:01 +00:00
Родитель fe4cfbb3e6
Коммит cad042f00e
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -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);