summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/common/dircache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/dircache.c b/firmware/common/dircache.c
index f42c79d169..f47e65e428 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -107,7 +107,7 @@ static struct dircache_entry *fd_bindings[MAX_OPEN_FILES];
107static bool dircache_initialized = false; 107static bool dircache_initialized = false;
108static bool dircache_initializing = false; 108static bool dircache_initializing = false;
109static bool thread_enabled = false; 109static bool thread_enabled = false;
110static unsigned long allocated_size = DIRCACHE_LIMIT; 110static unsigned long allocated_size = 0;
111static unsigned long dircache_size = 0; 111static unsigned long dircache_size = 0;
112static unsigned long entry_count = 0; 112static unsigned long entry_count = 0;
113static unsigned long reserve_used = 0; 113static unsigned long reserve_used = 0;
@@ -829,7 +829,7 @@ int dircache_build(int last_size)
829#endif 829#endif
830 830
831 /* Background build, dircache has been previously allocated */ 831 /* Background build, dircache has been previously allocated */
832 if (dircache_size > 0) 832 if (allocated_size > 0)
833 { 833 {
834 d_names_start = d_names_end; 834 d_names_start = d_names_end;
835 dircache_size = 0; 835 dircache_size = 0;