1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

windows: fopen files with "wb"

This commit is contained in:
Nick Wellnhofer 2024-06-22 21:28:40 +02:00
parent 5589c9ea6f
commit 2d96adb27b
4 changed files with 6 additions and 6 deletions

View File

@ -1010,7 +1010,7 @@ main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
int ret = 0;
int old_errors, old_tests, old_leaks, expected_errors;
logfile = fopen(LOGFILE, "w");
logfile = fopen(LOGFILE, "wb");
if (logfile == NULL) {
fprintf(stderr,
"Could not open the log file, running in verbose mode\n");

View File

@ -545,7 +545,7 @@ main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
int ret = 0;
int old_errors, old_tests, old_leaks;
logfile = fopen(LOGFILE, "w");
logfile = fopen(LOGFILE, "wb");
if (logfile == NULL) {
fprintf(stderr,
"Could not open the log file, running in verbose mode\n");

View File

@ -807,7 +807,7 @@ xmllintShellWrite(xmllintShellCtxtPtr ctxt, char *filename, xmlNodePtr node,
default:{
FILE *f;
f = fopen((char *) filename, "w");
f = fopen((char *) filename, "wb");
if (f == NULL) {
fprintf(ctxt->output,
"Failed to write to %s\n", filename);

View File

@ -487,7 +487,7 @@ int main(int argc, char **argv) {
if (xmlCatalogIsEmpty(catal)) {
remove(argv[i + 1]);
} else {
out = fopen(argv[i + 1], "w");
out = fopen(argv[i + 1], "wb");
if (out == NULL) {
fprintf(stderr, "could not open %s for saving\n",
argv[i + 1]);
@ -502,7 +502,7 @@ int main(int argc, char **argv) {
if (xmlCatalogIsEmpty(super)) {
remove(XML_SGML_DEFAULT_CATALOG);
} else {
out = fopen(XML_SGML_DEFAULT_CATALOG, "w");
out = fopen(XML_SGML_DEFAULT_CATALOG, "wb");
if (out == NULL) {
fprintf(stderr,
"could not open %s for saving\n",
@ -592,7 +592,7 @@ int main(int argc, char **argv) {
if (noout && filename && *filename) {
FILE *out;
out = fopen(filename, "w");
out = fopen(filename, "wb");
if (out == NULL) {
fprintf(stderr, "could not open %s for saving\n", filename);
exit_value = 2;