diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2006-05-11 19:21:20 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-05-11 19:21:20 +0000 |
commit | 5a33784ba34393bddfb5827fd56da5571e83b25b (patch) | |
tree | cd53e28eb6c6bef8a45cabf291b8566c77799cb6 | |
parent | 119d5b72ac034d57fb6e2faf1561a41b0c8677c3 (diff) | |
download | rockbox-5a33784ba34393bddfb5827fd56da5571e83b25b.tar.gz rockbox-5a33784ba34393bddfb5827fd56da5571e83b25b.zip |
Fixed a problem with tagcache search skipping long tags. Thanks for
Gaetano for finding the problem and providing a fix.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9914 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/tagcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 84da5f90af..127c6aa63a 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -523,7 +523,7 @@ static bool build_lookup_list(struct tagcache_search *tcs) { struct tagfile_entry tfe; int seek = entry.tag_seek[tcs->clause[i]->tag]; - char str[64]; + char str[256]; memset(str, 0, sizeof str); if (!tagcache_is_numeric_tag(tcs->clause[i]->tag)) |