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:
parent
2da04fdae9
commit
e461f2ec18
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
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)
|
static char* get_tag_string(const struct index_entry *entry, int tag)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue