kernel/fs: Add missing initializations to EntryCache.

Should fix #17857.
This commit is contained in:
Augustin Cavalier 2022-08-04 16:16:58 -04:00
parent bdce546c9f
commit 8016c5b776

View File

@ -49,6 +49,8 @@ EntryCacheGeneration::Init(int32 entriesSize)
EntryCache::EntryCache()
:
fGenerationCount(0),
fGenerations(NULL),
fCurrentGeneration(0)
{
rw_lock_init(&fLock, "entry cache");