we can't store more than 255 tag items per tag

git-svn-id: https://svn.musicpd.org/mpd/trunk@2592 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2004-11-10 22:13:30 +00:00
parent 91a621e076
commit 41bf67ae99

View File

@ -323,6 +323,9 @@ void addItemToMpdTagWithLen(MpdTag * tag, int itemType, char * value, int len) {
if(ignoreTagItems[itemType]) return;
if(!value || !len) return;
/* we can't hold more than 255 items */
if(tag->numOfItems == 255) return;
appendToTagItems(tag, itemType, value, len);
}