| 855 | } |
| 856 | |
| 857 | static void |
| 858 | xmlSBufCleanup(xmlSBuf *buf, xmlParserCtxtPtr ctxt, const char *errMsg) { |
| 859 | if (buf->code != XML_ERR_OK) |
| 860 | xmlSBufReportError(buf, ctxt, errMsg); |
| 861 | |
| 862 | xmlFree(buf->mem); |
| 863 | } |
| 864 | |
| 865 | static int |
| 866 | xmlUTF8MultibyteLen(xmlParserCtxtPtr ctxt, const xmlChar *str, |
no test coverage detected