2023-03-29 05:53:36 +08:00
|
|
|
--- a/src/3rdparty/chromium/third_party/libxml/src/encoding.c
|
|
|
|
+++ b/src/3rdparty/chromium/third_party/libxml/src/encoding.c
|
2023-04-07 08:27:42 +08:00
|
|
|
@@ -25,6 +25,7 @@
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
+#include <stdbool.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_CTYPE_H
|
|
|
|
#include <ctype.h>
|
|
|
|
@@ -2004,7 +2005,7 @@ xmlEncOutputChunk(xmlCharEncodingHandler *handler, unsigned char *out,
|
2023-03-29 05:53:36 +08:00
|
|
|
#ifdef LIBXML_ICU_ENABLED
|
|
|
|
else if (handler->uconv_out != NULL) {
|
|
|
|
ret = xmlUconvWrapper(handler->uconv_out, 0, out, outlen, in, inlen,
|
|
|
|
- TRUE);
|
|
|
|
+ true);
|
|
|
|
}
|
|
|
|
#endif /* LIBXML_ICU_ENABLED */
|
|
|
|
else {
|