mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
e
This commit is contained in:
parent
89e69f2cf8
commit
6203ebde15
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ VOID DriverUnload(
|
|||
)
|
||||
{
|
||||
IoDeleteSymbolicLink( &DEVICE_SYMBOLIC_LINK );
|
||||
IoDeleteDevice( &DriverObject->DeviceObject );
|
||||
IoDeleteDevice( DriverObject->DeviceObject );
|
||||
}
|
||||
|
||||
NTSTATUS DriverEntry(
|
||||
|
@ -40,7 +40,7 @@ NTSTATUS DriverEntry(
|
|||
|
||||
if ( !NT_SUCCESS( status ) )
|
||||
{
|
||||
IoDeleteDevice( &DriverObject->DeviceObject );
|
||||
IoDeleteDevice( DriverObject->DeviceObject );
|
||||
return STATUS_FAILED_DRIVER_ENTRY;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue