mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Change the return value in CreateFileW() from FALSE to INVALID_HANDLE_VALUE.
svn path=/trunk/; revision=2248
This commit is contained in:
parent
1689533ef4
commit
a8a4e37cba
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: create.c,v 1.21 2000/06/03 14:47:31 ea Exp $
|
||||
/* $Id: create.c,v 1.22 2001/09/09 12:21:37 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -121,7 +121,7 @@ HANDLE STDCALL CreateFileW (LPCWSTR lpFileName,
|
|||
&NtPathU,
|
||||
NULL,
|
||||
NULL))
|
||||
return FALSE;
|
||||
return INVALID_HANDLE_VALUE;
|
||||
|
||||
DPRINT("NtPathU \'%S\'\n", NtPathU.Buffer);
|
||||
|
||||
|
|
Loading…
Reference in a new issue