Commit 4291823f authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

krnl386.exe16: Add an error code.

parent 70ef0320
......@@ -3587,6 +3587,8 @@ static void INT21_GetExtendedError( CONTEXT86 *context )
locus = EL_Disk;
break;
case ERROR_FILE_NOT_FOUND:
case ERROR_PATH_NOT_FOUND:
case ERROR_INVALID_NAME:
class = EC_NotFound;
action = SA_Abort;
locus = EL_Disk;
......@@ -3626,11 +3628,6 @@ static void INT21_GetExtendedError( CONTEXT86 *context )
action = SA_Abort;
locus = EL_Memory;
break;
case ERROR_PATH_NOT_FOUND:
class = EC_NotFound;
action = SA_Abort;
locus = EL_Disk;
break;
case ERROR_SEEK:
class = EC_NotFound;
action = SA_Ignore;
......
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