Commit 3842103c authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Handle EIO file error.

parent add18f77
......@@ -249,6 +249,7 @@ static DWORD FILE_GetNtStatus(void)
case EINVAL:
case ENOTEMPTY: nt = STATUS_DIRECTORY_NOT_EMPTY; break;
case EPIPE: nt = STATUS_PIPE_BROKEN; break;
case EIO: nt = STATUS_DISK_CORRUPT_ERROR; break;
case ENOEXEC: /* ?? */
case ESPIPE: /* ?? */
case EEXIST: /* ?? */
......
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