diff options
Diffstat (limited to 'src/tag')
-rw-r--r-- | src/tag/Riff.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tag/Riff.cxx b/src/tag/Riff.cxx index ad64afc39..ac162bc24 100644 --- a/src/tag/Riff.cxx +++ b/src/tag/Riff.cxx @@ -87,7 +87,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; |