mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[NTOS:IO]
- Avoid event leak in NtQueryInformationFile. CID 716584 svn path=/trunk/; revision=74013
This commit is contained in:
@@ -2240,8 +2240,17 @@ NtQueryInformationFile(IN HANDLE FileHandle,
|
||||
}
|
||||
_SEH2_END;
|
||||
|
||||
/* Unlock FO */
|
||||
IopUnlockFileObject(FileObject);
|
||||
/* Free the event if we had one */
|
||||
if (LocalEvent)
|
||||
{
|
||||
ExFreePoolWithTag(Event, TAG_IO);
|
||||
}
|
||||
|
||||
/* If FO was locked, unlock it */
|
||||
if (FileObject->Flags & FO_SYNCHRONOUS_IO)
|
||||
{
|
||||
IopUnlockFileObject(FileObject);
|
||||
}
|
||||
|
||||
/* We're done with FastIO! */
|
||||
ObDereferenceObject(FileObject);
|
||||
|
||||
Reference in New Issue
Block a user