mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[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:
parent
7662858670
commit
7eca874824
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ FsRtlStackOverflowRead(IN PVOID Context)
|
||||||
/* Otherwise, free the work item */
|
/* Otherwise, free the work item */
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ExFreePoolWithTag(WorkItem, 'Fsrs');
|
ExFreePoolWithTag(WorkItem, 'FSrs');
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Reset top level */
|
/* Reset top level */
|
||||||
|
|
Loading…
Reference in a new issue