aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/Riff.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag/Riff.cxx')
-rw-r--r--src/tag/Riff.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tag/Riff.cxx b/src/tag/Riff.cxx
index 73b2139d3..0f8f265fc 100644
--- a/src/tag/Riff.cxx
+++ b/src/tag/Riff.cxx
@@ -86,7 +86,8 @@ riff_seek_id3(FILE *file)
/* pad byte */
++size;
- if (memcmp(chunk.id, "id3 ", 4) == 0)
+ if (memcmp(chunk.id, "id3 ", 4) == 0 ||
+ memcmp(chunk.id, "ID3 ", 4) == 0)
/* found it! */
return size;