mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
- Set status to STATUS_OBJECT_NAME_INVALID if NtCreateMailslotFile returned STATUS_NOT_SUPPORTED
svn path=/trunk/; revision=41893
This commit is contained in:
parent
ba31bc03ca
commit
66a1d260cb
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ CreateMailslotW(LPCWSTR lpName,
|
|||
nMaxMessageSize,
|
||||
&DefaultTimeOut);
|
||||
|
||||
if (Status == STATUS_INVALID_DEVICE_REQUEST)
|
||||
if (Status == STATUS_INVALID_DEVICE_REQUEST || Status == STATUS_NOT_SUPPORTED)
|
||||
{
|
||||
Status = STATUS_OBJECT_NAME_INVALID;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue