[NTOSKRNL] Fix FsRtlStackOverflow work item free.

Oneliner of the day... This typo just prevented the
whole feature to work properly. Because any allocated
work item would miserably fail to be freed.

This will obviously help real world FSD relying on
StackOverflow worker from FsRtl to work better!

CORE-14611
This commit is contained in:
Pierre Schweitzer 2018-05-10 10:33:05 +02:00
parent 7662858670
commit 7eca874824
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -61,7 +61,7 @@ FsRtlStackOverflowRead(IN PVOID Context)
/* Otherwise, free the work item */
else
{
ExFreePoolWithTag(WorkItem, 'Fsrs');
ExFreePoolWithTag(WorkItem, 'FSrs');
}
/* Reset top level */