mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[NTOSKRNL]
Don't enforce IO tag when freeing file object name, it might have been reallocated by a driver for an Ob reparse svn path=/trunk/; revision=68756
This commit is contained in:
@@ -1002,7 +1002,7 @@ IopParseDevice(IN PVOID ParseObject,
|
||||
if (FileObject->FileName.Length)
|
||||
{
|
||||
/* Free it */
|
||||
ExFreePoolWithTag(FileObject->FileName.Buffer, TAG_IO_NAME);
|
||||
ExFreePoolWithTag(FileObject->FileName.Buffer, 0);
|
||||
FileObject->FileName.Length = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user