mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +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;
|
||||
|
||||
default:
|
||||
Irp->IoStatus.Information = 0;
|
||||
nErrCode = STATUS_NOT_IMPLEMENTED;
|
||||
ASSERT(FALSE);
|
||||
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
ASSERT(FALSE);
|
||||
Irp->IoStatus.Information = 0;
|
||||
nErrCode = STATUS_NOT_IMPLEMENTED;
|
||||
|
||||
}
|
||||
|
||||
Irp->IoStatus.Status = nErrCode;
|
||||
|
|
Loading…
Reference in a new issue