fixed a state problem in parser related to nesting levels

This commit is contained in:
rickg@netscape.com
1998-07-25 01:02:01 +00:00
parent ff48082420
commit cac13f733e
4 changed files with 6 additions and 2 deletions

View File

@@ -497,6 +497,7 @@ PRInt32 nsParser::Parse(fstream& aStream){
pc=PopContext();
delete pc;
mParseLevel--;
return status;
}
@@ -528,6 +529,7 @@ PRInt32 nsParser::Parse(nsString& aSourceBuffer,PRBool anHTMLString){
}
pc=PopContext();
delete pc;
mParseLevel--;
return result;
}