diff options
author | Steve Bavin <pondlife@pondlife.me> | 2007-03-08 08:20:30 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2007-03-08 08:20:30 +0000 |
commit | 149bc03d86e1ae8c2d05fb9d657500252a8ba20a (patch) | |
tree | f5207faaa0f05af465760d9c9017d31df1d38a19 /apps/tagcache.h | |
parent | b1646abc18eab961c815822cf548518315b2ee7d (diff) |
Really don't try to initialise while the database status is unknown
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12684 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r-- | apps/tagcache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h index c8d52308ce..0cfdedf310 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -86,6 +86,7 @@ enum clause { clause_none, clause_is, clause_is_not, clause_gt, clause_gteq, struct tagcache_stat { bool initialized; /* Is tagcache currently busy? */ + bool readyvalid; /* Has tagcache ready status been ascertained */ bool ready; /* Is tagcache ready to be used? */ bool ramcache; /* Is tagcache loaded in ram? */ bool commit_delayed; /* Has commit been delayed until next reboot? */ |