mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Fixed bug #725 - changed the maximum length of an APE key to 255
This commit is contained in:
parent
1a82419872
commit
ff8b6a91e7
@ -51,7 +51,7 @@ namespace
|
||||
{
|
||||
const char *invalidKeys[] = { "ID3", "TAG", "OGGS", "MP+", 0 };
|
||||
|
||||
if(length < 2 || length > 16)
|
||||
if(length < 2 || length > 255)
|
||||
return false;
|
||||
|
||||
// only allow printable ASCII including space (32..126)
|
||||
|
Loading…
Reference in New Issue
Block a user