summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-03-26 12:49:19 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-03-26 12:49:19 +0000
commita93e59152a6a1e97f90ca5345ef2d34ac378922a (patch)
tree991491a5157d9bb302b10f366a66e27f0b5dc733
parent7c4e0c8730d5b076d4db4206361bc38d5256a23f (diff)
downloadrockbox-a93e59152a6a1e97f90ca5345ef2d34ac378922a.tar.gz
rockbox-a93e59152a6a1e97f90ca5345ef2d34ac378922a.zip
Properly allocating the temporary buffer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9257 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tagcache.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 6c6dd00a60..db70cd5b34 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -31,9 +31,7 @@
31#include "splash.h" 31#include "splash.h"
32#include "lang.h" 32#include "lang.h"
33#include "tagcache.h" 33#include "tagcache.h"
34 34#include "buffer.h"
35/* External reference to the big audiobuffer. */
36extern char *audiobuf, *audiobufend;
37 35
38/* Tag Cache thread. */ 36/* Tag Cache thread. */
39static struct event_queue tagcache_queue; 37static struct event_queue tagcache_queue;