1
0
Fork 0
forked from len0rd/rockbox

don't hard code size

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12597 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Kukla 2007-03-04 19:14:13 +00:00
parent 5a90ac97bc
commit ce63fcf6ab

View file

@ -1524,7 +1524,7 @@ static int check_if_empty(char **tag)
if (*tag == NULL || *tag[0] == '\0')
{
*tag = UNTAGGED;
return 11; /* Tag length */
return sizeof(UNTAGGED); /* Tag length */
}
length = strlen(*tag);