fixed in HTMLParser: sometimes a closing item left on the stack, for stack_len < 3 there was not PopStack() called
parent
2cc9dd69a3
commit
5b2583b566
|
@ -1808,7 +1808,10 @@ void HTMLParser::AddForgottenTags()
|
|||
int i;
|
||||
|
||||
if( stack_len < 3 )
|
||||
{
|
||||
PopStack();
|
||||
return;
|
||||
}
|
||||
|
||||
// we have forgotten to close some tags
|
||||
|
||||
|
|
Loading…
Reference in New Issue