mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:52:57 +00:00
[NTOSKRNL]
- Add an assertion to catch a bug in the I/O manager svn path=/trunk/; revision=56093
This commit is contained in:
parent
ad0cb34f20
commit
5a288c9f90
1 changed files with 3 additions and 0 deletions
|
@ -60,6 +60,9 @@ IopDeleteDriver(IN PVOID ObjectBody)
|
||||||
|
|
||||||
DPRINT1("Deleting driver object '%wZ'\n", &DriverObject->DriverName);
|
DPRINT1("Deleting driver object '%wZ'\n", &DriverObject->DriverName);
|
||||||
|
|
||||||
|
/* There must be no device objects remaining at this point */
|
||||||
|
ASSERT(!DriverObject->DeviceObject);
|
||||||
|
|
||||||
/* Get the extension and loop them */
|
/* Get the extension and loop them */
|
||||||
DriverExtension = IoGetDrvObjExtension(DriverObject)->
|
DriverExtension = IoGetDrvObjExtension(DriverObject)->
|
||||||
ClientDriverExtension;
|
ClientDriverExtension;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue