aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--src/decoder/plugins/DsdLib.cxx2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 097da9199..ed6f0912e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,6 @@
ver 0.19.9 (not yet released)
+* decoder
+ - dsdiff, dsf: raise ID3 tag limit to 1 MB
* fix build failure with uClibc
* fix build failure on non-POSIX operating systems
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));