mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
- The FO's lock is a Synch event, not a notification event!
svn path=/trunk/; revision=22855
This commit is contained in:
parent
b450016579
commit
6fc8c860f1
1 changed files with 1 additions and 1 deletions
|
@ -986,7 +986,7 @@ IoCreateFile(OUT PHANDLE FileHandle,
|
|||
SecurityContext.DesiredAccess = DesiredAccess;
|
||||
SecurityContext.FullCreateOptions = 0; /* ?? */
|
||||
|
||||
KeInitializeEvent(&FileObject->Lock, SynchronizationEvent, TRUE);
|
||||
KeInitializeEvent(&FileObject->Lock, SynchronizationEvent, FALSE);
|
||||
KeInitializeEvent(&FileObject->Event, NotificationEvent, FALSE);
|
||||
|
||||
DPRINT("FileObject 0x%p\n", FileObject);
|
||||
|
|
Loading…
Reference in a new issue