mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
- Minor correction to returned error.
svn path=/trunk/; revision=9101
This commit is contained in:
parent
83d22245fd
commit
a885a5c4bc
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: create.c,v 1.17 2004/04/12 13:03:29 navaraf Exp $
|
/* $Id: create.c,v 1.18 2004/04/12 14:46:02 navaraf Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -77,7 +77,7 @@ NpfsCreate(PDEVICE_OBJECT DeviceObject,
|
||||||
ExFreePool(ClientFcb);
|
ExFreePool(ClientFcb);
|
||||||
KeUnlockMutex(&DeviceExt->PipeListLock);
|
KeUnlockMutex(&DeviceExt->PipeListLock);
|
||||||
|
|
||||||
Irp->IoStatus.Status = STATUS_UNSUCCESSFUL;
|
Irp->IoStatus.Status = STATUS_OBJECT_NAME_NOT_FOUND;
|
||||||
Irp->IoStatus.Information = 0;
|
Irp->IoStatus.Information = 0;
|
||||||
|
|
||||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||||
|
|
Loading…
Reference in a new issue