fix RTM++56085 crasher; r=attinasi, sr=buster

This commit is contained in:
rickg%netscape.com 2000-10-13 01:16:56 +00:00
Родитель 53f02aa5dd
Коммит f037efeaf7
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -891,7 +891,7 @@ nsresult CNavDTD::DidHandleStartTag(nsCParserNode& aNode,eHTMLTags aChildTag){
//handle <empty/> tags by generating a close tag...
//added this to fix bug 48351, which contains XHTML and uses empty tags.
if(nsHTMLElement::IsContainer(aChildTag)) {
if(nsHTMLElement::IsContainer(aChildTag) && aNode.mToken) { //nullptr test fixes bug 56085
CStartToken *theToken=NS_STATIC_CAST(CStartToken*,aNode.mToken);
if(theToken->IsEmpty()){

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

@ -891,7 +891,7 @@ nsresult CNavDTD::DidHandleStartTag(nsCParserNode& aNode,eHTMLTags aChildTag){
//handle <empty/> tags by generating a close tag...
//added this to fix bug 48351, which contains XHTML and uses empty tags.
if(nsHTMLElement::IsContainer(aChildTag)) {
if(nsHTMLElement::IsContainer(aChildTag) && aNode.mToken) { //nullptr test fixes bug 56085
CStartToken *theToken=NS_STATIC_CAST(CStartToken*,aNode.mToken);
if(theToken->IsEmpty()){