mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 04:54:19 -04:00
Merge pull request #726 from amethystAnt/ape-keys-bug
Fixed bug #725 - changed the maximum length of an APE key to 255
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user