Skip to content
Snippets Groups Projects
Commit 3842103c authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard
Browse files

Handle EIO file error.

parent add18f77
No related branches found
No related tags found
No related merge requests found
......@@ -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: /* ?? */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment