mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[NTOSKRNL]
Don't enforce tag on free, it may have been reallocated by someone else (Ob) svn path=/trunk/; revision=68788
This commit is contained in:
parent
05e1863025
commit
6a08c60dee
1 changed files with 1 additions and 1 deletions
|
@ -981,7 +981,7 @@ IopParseDevice(IN PVOID ParseObject,
|
|||
/* Release the old one */
|
||||
if (CompleteName->Buffer != NULL)
|
||||
{
|
||||
ExFreePoolWithTag(CompleteName->Buffer, TAG_IO_NAME);
|
||||
ExFreePoolWithTag(CompleteName->Buffer, 0);
|
||||
}
|
||||
|
||||
/* And setup the new one */
|
||||
|
|
Loading…
Reference in a new issue