Commit 1e56c7b8 authored by Gunnar Roth's avatar Gunnar Roth Committed by Max Kellermann

decoder/vorbis: open file in "binary" mode

fopen change for win32 in tag dup of vorbis win32 adaption for head changes
parent 4a0d4a02
......@@ -377,7 +377,7 @@ vorbis_tag_dup(const char *file)
FILE *fp;
OggVorbis_File vf;
fp = fopen(file, "r");
fp = fopen(file, "rb");
if (!fp) {
return NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment