Commit 523032e6 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

server: Map EFAULT to STATUS_ACCESS_VIOLATION.

parent 44c395d6
......@@ -1286,7 +1286,7 @@ static int sock_get_ntstatus( int err )
case EBUSY: return STATUS_DEVICE_BUSY;
case EPERM:
case EACCES: return STATUS_ACCESS_DENIED;
case EFAULT: return STATUS_NO_MEMORY;
case EFAULT: return STATUS_ACCESS_VIOLATION;
case EINVAL: return STATUS_INVALID_PARAMETER;
case ENFILE:
case EMFILE: return STATUS_TOO_MANY_OPENED_FILES;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment