summaryrefslogtreecommitdiff
path: root/apps/tagcache.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-11-10 09:52:46 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-11-10 09:52:46 +0000
commit6a86036e90508bd319c56370967e24eb7f59771a (patch)
tree132c494e530d8941c7950bb0e826d761c18bf406 /apps/tagcache.c
parent0dd7ea2d712944b21ede9f57bebd1009b03932e6 (diff)
downloadrockbox-6a86036e90508bd319c56370967e24eb7f59771a.tar.gz
rockbox-6a86036e90508bd319c56370967e24eb7f59771a.zip
Don't add extra slash at beginning when creating db.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11498 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.c')
-rw-r--r--apps/tagcache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 4739291aa8..7f12bab849 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -3537,7 +3537,8 @@ void build_tagcache(const char *path)
3537 memset(&header, 0, sizeof(struct tagcache_header)); 3537 memset(&header, 0, sizeof(struct tagcache_header));
3538 write(cachefd, &header, sizeof(struct tagcache_header)); 3538 write(cachefd, &header, sizeof(struct tagcache_header));
3539 3539
3540 strcpy(curpath, path); 3540 if (strcmp("/", path) != 0)
3541 strcpy(curpath, path);
3541 ret = check_dir(path); 3542 ret = check_dir(path);
3542 3543
3543 /* Write the header. */ 3544 /* Write the header. */