aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tag_ape.c2
-rw-r--r--src/tag_id3.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tag_ape.c b/src/tag_ape.c
index 4dfba2ca..9a07c3ac 100644
--- a/src/tag_ape.c
+++ b/src/tag_ape.c
@@ -78,7 +78,7 @@ tag_ape_load(const char *file)
unsigned char reserved[8];
} footer;
- fp = fopen(file, "r");
+ fp = fopen(file, "rb");
if (!fp)
return NULL;
diff --git a/src/tag_id3.c b/src/tag_id3.c
index 008eff87..c1302ca8 100644
--- a/src/tag_id3.c
+++ b/src/tag_id3.c
@@ -495,7 +495,7 @@ struct tag *tag_id3_load(const char *file)
struct id3_tag *tag;
FILE *stream;
- stream = fopen(file, "r");
+ stream = fopen(file, "rb");
if (!stream) {
g_debug("tag_id3_load: Failed to open file: '%s', %s",
file, strerror(errno));