mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 03:23:42 +00:00
[MSAFD]
- Add error translation for STATUS_ACCESS_VIOLATION svn path=/trunk/; revision=57177
This commit is contained in:
parent
2a9a4034d9
commit
f2ac4605ca
1 changed files with 4 additions and 0 deletions
|
@ -376,6 +376,10 @@ TranslateNtStatusError(NTSTATUS Status)
|
|||
DbgPrint("MSAFD: STATUS_REMOTE_DISCONNECT\n");
|
||||
return WSAECONNRESET;
|
||||
|
||||
case STATUS_ACCESS_VIOLATION:
|
||||
DbgPrint("MSAFD: STATUS_ACCESS_VIOLATION\n");
|
||||
return WSAEFAULT;
|
||||
|
||||
default:
|
||||
DbgPrint("MSAFD: Unhandled NTSTATUS value: 0x%x\n", Status);
|
||||
return WSAENETDOWN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue