| 821 | } |
| 822 | |
| 823 | static int xmlSaveClearEncoding(xmlSaveCtxtPtr ctxt) { |
| 824 | xmlOutputBufferPtr buf = ctxt->buf; |
| 825 | xmlOutputBufferFlush(buf); |
| 826 | xmlCharEncCloseFunc(buf->encoder); |
| 827 | xmlBufFree(buf->conv); |
| 828 | buf->encoder = NULL; |
| 829 | buf->conv = NULL; |
| 830 | return(0); |
| 831 | } |
| 832 | |
| 833 | #ifdef LIBXML_HTML_ENABLED |
| 834 | static void |
no test coverage detected