Fixed typo in DOS device check in CreateFileW.

oldstable
Stefan Leichter 2004-03-12 02:02:13 +00:00 committed by Alexandre Julliard
parent fe8ead56a8
commit aee7467731
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ HANDLE WINAPI CreateFileW( LPCWSTR filename, DWORD access, DWORD sharing,
}
goto done;
}
else if (!RtlIsDosDeviceName_U( filename ))
else if (!RtlIsDosDeviceName_U( filename + 4 ))
{
ret = VXD_Open( filename+4, access, sa );
goto done;