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:
parent
5a90ac97bc
commit
ce63fcf6ab
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue