Fixed bug #725 - changed the maximum length of an APE key to 255

This commit is contained in:
Karel Patlejch 2016-03-06 21:15:18 +01:00
parent 1a82419872
commit ff8b6a91e7

View File

@ -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)