html: Remove some debugging code in htmlParseTryOrFinish

This commit is contained in:
Nick Wellnhofer 2023-08-08 15:19:25 +02:00
parent 58de9d31da
commit 3a64f39448

View File

@ -6112,117 +6112,11 @@ htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_CDATA_SECTION:
default:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == CDATA\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
"HPP: internal error\n", NULL, NULL);
ctxt->instate = XML_PARSER_EOF;
break;
case XML_PARSER_DTD:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == DTD\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_COMMENT:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == COMMENT\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_PI:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == PI\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_ENTITY_DECL:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == ENTITY_DECL\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_ENTITY_VALUE:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == ENTITY_VALUE\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering DTD\n");
#endif
break;
case XML_PARSER_ATTRIBUTE_VALUE:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == ATTRIBUTE_VALUE\n",
NULL, NULL);
ctxt->instate = XML_PARSER_START_TAG;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering START_TAG\n");
#endif
break;
case XML_PARSER_SYSTEM_LITERAL:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == XML_PARSER_SYSTEM_LITERAL\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_IGNORE:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == XML_PARSER_IGNORE\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
case XML_PARSER_PUBLIC_LITERAL:
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
"HPP: internal error, state == XML_PARSER_LITERAL\n",
NULL, NULL);
ctxt->instate = XML_PARSER_CONTENT;
ctxt->checkIndex = 0;
#ifdef DEBUG_PUSH
xmlGenericError(xmlGenericErrorContext,
"HPP: entering CONTENT\n");
#endif
break;
}
}
done: