mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed crash upon shutdown.
svn path=/trunk/; revision=4686
This commit is contained in:
parent
556a38e0c0
commit
366cd995f3
1 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: rawfs.c,v 1.1 2003/05/13 21:28:26 chorns Exp $
|
/* $Id: rawfs.c,v 1.2 2003/05/15 13:34:37 ekohl Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -776,7 +776,12 @@ static NTSTATUS STDCALL
|
||||||
RawFsShutdown(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp)
|
RawFsShutdown(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp)
|
||||||
{
|
{
|
||||||
DPRINT("RawFsShutdown(DeviceObject %x, Irp %x)\n", DeviceObject, Irp);
|
DPRINT("RawFsShutdown(DeviceObject %x, Irp %x)\n", DeviceObject, Irp);
|
||||||
UNIMPLEMENTED
|
|
||||||
|
/*
|
||||||
|
* Note: Do NOT call UNIMPLEMENTED here!
|
||||||
|
* This function must finish in order to shutdown ReactOS properly!
|
||||||
|
*/
|
||||||
|
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue