Commit 9f8a5298 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

File handle bug fix.

parent 0470222b
......@@ -1808,7 +1808,8 @@ void WINAPI DOS3Call( CONTEXT *context )
DosDateTimeToFileTime( DX_reg(context), CX_reg(context),
&filetime );
bSetDOSExtendedError =
(!SetFileTime( BX_reg(context), NULL, NULL, &filetime ));
(!SetFileTime( HFILE16_TO_HFILE32(BX_reg(context)),
NULL, NULL, &filetime ));
}
break;
}
......
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