mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Even with flush set to true, xmlCharEncInput didn't guarantee to decode all data. This complicated the push parser. Remove the flush flag and always decode all available data. Also fix ICU code where the flush flag has a different meaning. Always set flush to false and retry even with empty input buffers.
19 lines
480 B
C
19 lines
480 B
C
#ifndef XML_ENC_H_PRIVATE__
|
|
#define XML_ENC_H_PRIVATE__
|
|
|
|
#include <libxml/encoding.h>
|
|
#include <libxml/tree.h>
|
|
|
|
XML_HIDDEN void
|
|
xmlInitEncodingInternal(void);
|
|
|
|
XML_HIDDEN int
|
|
xmlEncInputChunk(xmlCharEncodingHandler *handler, unsigned char *out,
|
|
int *outlen, const unsigned char *in, int *inlen);
|
|
XML_HIDDEN int
|
|
xmlCharEncInput(xmlParserInputBufferPtr input);
|
|
XML_HIDDEN int
|
|
xmlCharEncOutput(xmlOutputBufferPtr output, int init);
|
|
|
|
#endif /* XML_ENC_H_PRIVATE__ */
|