mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Fix SHARED_CACHE_MAP structure: it should contain a PRIVATE_CACHE_MAP, not a pointer to it! (confirmed by OSR).
- The same error in VacbPushLock field (also confirmed by OSR). svn path=/trunk/; revision=35861
This commit is contained in:
parent
1d9ff6256c
commit
056316f3ac
1 changed files with 2 additions and 2 deletions
|
@ -127,8 +127,8 @@ typedef struct _SHARED_CACHE_MAP
|
|||
ULONG BcbSpinLock;
|
||||
PVOID Reserved;
|
||||
KEVENT Event;
|
||||
PEX_PUSH_LOCK VacbPushLock;
|
||||
PPRIVATE_CACHE_MAP PrivateCacheMap;
|
||||
EX_PUSH_LOCK VacbPushLock;
|
||||
PRIVATE_CACHE_MAP PrivateCacheMap;
|
||||
} SHARED_CACHE_MAP;
|
||||
|
||||
#endif /* _NTIFS_INCLUDED_ */
|
||||
|
|
Loading…
Reference in a new issue