fixed in HTMLParser: sometimes a closing item left on the stack, for stack_len < 3 there was not PopStack() called

This commit is contained in:
Tomasz Sowa 2021-10-02 18:45:02 +02:00
parent 2cc9dd69a3
commit 5b2583b566
1 changed files with 3 additions and 0 deletions

View File

@ -1808,7 +1808,10 @@ void HTMLParser::AddForgottenTags()
int i;
if( stack_len < 3 )
{
PopStack();
return;
}
// we have forgotten to close some tags