| 818 | } |
| 819 | |
| 820 | static void |
| 821 | xmlSBufReportError(xmlSBuf *buf, xmlParserCtxtPtr ctxt, const char *errMsg) { |
| 822 | if (buf->code == XML_ERR_NO_MEMORY) |
| 823 | xmlCtxtErrMemory(ctxt); |
| 824 | else |
| 825 | xmlFatalErr(ctxt, buf->code, errMsg); |
| 826 | } |
| 827 | |
| 828 | static xmlChar * |
| 829 | xmlSBufFinish(xmlSBuf *buf, int *sizeOut, xmlParserCtxtPtr ctxt, |
no test coverage detected