* xmlHaltParser: * @ctxt: an XML parser context * * Blocks further parser processing don't override error * for internal use */
| 408 | * for internal use |
| 409 | */ |
| 410 | void |
| 411 | xmlHaltParser(xmlParserCtxtPtr ctxt) { |
| 412 | if (ctxt == NULL) |
| 413 | return; |
| 414 | ctxt->instate = XML_PARSER_EOF; /* TODO: Remove after refactoring */ |
| 415 | ctxt->disableSAX = 2; |
| 416 | } |
| 417 | |
| 418 | /** |
| 419 | * xmlParserInputRead: |
no outgoing calls
no test coverage detected