mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Returned STATUS_NOT_IMPLEMENTED for requests other than read or write.
svn path=/trunk/; revision=16577
This commit is contained in:
parent
e75662b821
commit
dfaed2eb99
1 changed files with 5 additions and 3 deletions
|
@ -93,15 +93,17 @@ NullDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
Irp->IoStatus.Information = 0;
|
ASSERT(FALSE);
|
||||||
nErrCode = STATUS_NOT_IMPLEMENTED;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ASSERT(FALSE);
|
Irp->IoStatus.Information = 0;
|
||||||
|
nErrCode = STATUS_NOT_IMPLEMENTED;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Irp->IoStatus.Status = nErrCode;
|
Irp->IoStatus.Status = nErrCode;
|
||||||
|
|
Loading…
Reference in a new issue