mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[MOUNTMGR] Properly enumerate pending IRPs on cleanup
CORE-16370
This commit is contained in:
parent
0a5f86d44a
commit
bf6215c601
1 changed files with 1 additions and 1 deletions
|
@ -1736,7 +1736,7 @@ MountMgrCleanup(IN PDEVICE_OBJECT DeviceObject,
|
|||
}
|
||||
|
||||
/* Otherwise, cancel all the IRPs */
|
||||
NextEntry = &(DeviceExtension->IrpListHead);
|
||||
NextEntry = DeviceExtension->IrpListHead.Flink;
|
||||
do
|
||||
{
|
||||
ListIrp = CONTAINING_RECORD(NextEntry, IRP, Tail.Overlay.ListEntry);
|
||||
|
|
Loading…
Reference in a new issue