parent
6522d2f722
commit
b763852f57
1
NEWS
1
NEWS
|
@ -3,6 +3,7 @@ ver 0.20.20 (not yet released)
|
|||
- fix "modified-since" filter regression
|
||||
* decoder
|
||||
- dsdiff, dsf: support more MIME types
|
||||
- dsdiff, dsf: allow 4 MB ID3 tags
|
||||
|
||||
ver 0.20.19 (2018/04/26)
|
||||
* protocol
|
||||
|
|
|
@ -128,7 +128,7 @@ dsdlib_tag_id3(InputStream &is,
|
|||
return;
|
||||
|
||||
const auto count64 = size - tagoffset;
|
||||
if (count64 < 10 || count64 > 1024 * 1024)
|
||||
if (count64 < 10 || count64 > 4 * 1024 * 1024)
|
||||
return;
|
||||
|
||||
if (!dsdlib_skip_to(nullptr, is, tagoffset))
|
||||
|
|
Loading…
Reference in New Issue