Fix crash by checking whether a link handler was returned bu GetLinkHandler(...)

This commit is contained in:
rpotts 1998-07-01 11:15:20 +00:00
Родитель 415ca2fc2a
Коммит 00765c5325
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -549,7 +549,7 @@ void nsHTMLTagContent::TriggerLink(nsIPresContext& aPresContext,
PRBool aClick)
{
nsILinkHandler* handler;
if (NS_OK == aPresContext.GetLinkHandler(&handler)) {
if (NS_OK == aPresContext.GetLinkHandler(&handler) && (nsnull != handler)) {
// Resolve url to an absolute url
nsIURL* docURL = nsnull;
nsIDocument* doc;