mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:22:58 +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 */
|
/* Release the old one */
|
||||||
if (CompleteName->Buffer != NULL)
|
if (CompleteName->Buffer != NULL)
|
||||||
{
|
{
|
||||||
ExFreePoolWithTag(CompleteName->Buffer, TAG_IO_NAME);
|
ExFreePoolWithTag(CompleteName->Buffer, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* And setup the new one */
|
/* And setup the new one */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue