mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
[NDIS]
- Don't assert on IRP_MJ_CLEANUP CORE-7630 svn path=/trunk/; revision=75922
This commit is contained in:
@@ -2579,7 +2579,8 @@ NdisGenericIrpHandler(
|
||||
if (DeviceObject->DeviceType == FILE_DEVICE_PHYSICAL_NETCARD)
|
||||
{
|
||||
if ((IrpSp->MajorFunction == IRP_MJ_CREATE) ||
|
||||
(IrpSp->MajorFunction == IRP_MJ_CLOSE))
|
||||
(IrpSp->MajorFunction == IRP_MJ_CLOSE) ||
|
||||
(IrpSp->MajorFunction == IRP_MJ_CLEANUP))
|
||||
{
|
||||
return NdisICreateClose(DeviceObject, Irp);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user