diff options
author | Max Kellermann <max@duempel.org> | 2015-01-29 08:20:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-29 08:20:14 +0100 |
commit | 8b5f47d3a327fb4fcc1fef6cb5c610a999aae82c (patch) | |
tree | 752a1cf6eaa1e3cb58aab07358d6399786596daf /src | |
parent | a289dcb9ee6d7992a21f24b99be667eed6c32321 (diff) |
decoder/DsdLib: raise ID3 tag limit to 1 MB
A bug report was submitted with a 600 kB ID3 tag that could not be
read by MPD.
Diffstat (limited to 'src')
-rw-r--r-- | src/decoder/plugins/DsdLib.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/plugins/DsdLib.cxx b/src/decoder/plugins/DsdLib.cxx index 7321261f6..8ce1a94a3 100644 --- a/src/decoder/plugins/DsdLib.cxx +++ b/src/decoder/plugins/DsdLib.cxx @@ -125,7 +125,7 @@ dsdlib_tag_id3(InputStream &is, const id3_length_t count = size - offset; - if (count < 10 || count > 256*1024) + if (count < 10 || count > 1024 * 1024) return; id3_byte_t *const id3_buf = static_cast<id3_byte_t*>(xalloc(count)); |