[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:
Pierre Schweitzer 2015-08-21 20:40:47 +00:00
parent 05e1863025
commit 6a08c60dee

View file

@ -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 */