From 5589c9ea6f66a12964d54945b34342a7ca3fd0c8 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sat, 22 Jun 2024 21:01:38 +0200 Subject: [PATCH] xmllint: Set stdin/stdout to binary on Windows --- xmlcatalog.c | 10 ++++++++++ xmllint.c | 6 ++++++ 2 files changed, 16 insertions(+) diff --git a/xmlcatalog.c b/xmlcatalog.c index 398c5b82..37271643 100644 --- a/xmlcatalog.c +++ b/xmlcatalog.c @@ -13,6 +13,11 @@ #include #include +#ifdef _WIN32 + #include + #include +#endif + #ifdef HAVE_LIBREADLINE #include #ifdef HAVE_LIBHISTORY @@ -315,6 +320,11 @@ int main(int argc, char **argv) { int ret; int exit_value = 0; +#ifdef _WIN32 + _setmode(_fileno(stdin), _O_BINARY); + _setmode(_fileno(stdout), _O_BINARY); + _setmode(_fileno(stderr), _O_BINARY); +#endif if (argc <= 1) { usage(argv[0]); diff --git a/xmllint.c b/xmllint.c index 65ca4236..4b9c22a1 100644 --- a/xmllint.c +++ b/xmllint.c @@ -2990,6 +2990,12 @@ xmllintMain(int argc, const char **argv, xmlResourceLoader loader) { maxAmpl = 0; #endif /* XMLLINT_FUZZ */ +#ifdef _WIN32 + _setmode(_fileno(stdin), _O_BINARY); + _setmode(_fileno(stdout), _O_BINARY); + _setmode(_fileno(stderr), _O_BINARY); +#endif + if (argc <= 1) { usage(ERR_STREAM, argv[0]); return(XMLLINT_ERR_UNCLASS);