1
0
Fork 0
forked from len0rd/rockbox

Fixed an out of buffer boundaries lookup when database has been loaded in ram.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14720 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2007-09-15 22:45:08 +00:00
parent 2da04fdae9
commit e461f2ec18

View file

@ -1518,7 +1518,7 @@ static struct tagfile_entry *get_tag(const struct index_entry *entry, int tag)
static long get_tag_numeric(const struct index_entry *entry, int tag)
{
return entry->tag_seek[tag];
return check_virtual_tags(tag, entry);
}
static char* get_tag_string(const struct index_entry *entry, int tag)