fixed a crash that someone missed

This commit is contained in:
rickg%netscape.com 1998-11-13 04:58:35 +00:00
parent 2f234d74a2
commit ba3ddb1078
2 changed files with 6 additions and 2 deletions

View File

@ -241,9 +241,11 @@ RootFrame::ListTag(FILE* out) const
{
if (nsnull == mContent) {
fprintf(out, "*Root(-1)@%p", this);
} else {
}
else {
return nsFrame::ListTag(out);
}
return NS_OK;
}

View File

@ -241,9 +241,11 @@ RootFrame::ListTag(FILE* out) const
{
if (nsnull == mContent) {
fprintf(out, "*Root(-1)@%p", this);
} else {
}
else {
return nsFrame::ListTag(out);
}
return NS_OK;
}