[MOUNTMGR] Properly return EpicNumber in MountMgrChangeNotify

This commit is contained in:
Pierre Schweitzer
2019-09-07 23:07:54 +02:00
parent 400eb23a64
commit d904ee19c5

View File

@@ -57,7 +57,7 @@ MountMgrChangeNotify(IN PDEVICE_EXTENSION DeviceExtension,
if (DeviceExtension->EpicNumber != ChangeNotify->EpicNumber)
{
ChangeNotify->EpicNumber = DeviceExtension->EpicNumber;
Irp->IoStatus.Information = 0;
Irp->IoStatus.Information = sizeof(MOUNTMGR_CHANGE_NOTIFY_INFO);
return STATUS_SUCCESS;
}