Module: wine Branch: stable Commit: 881feb6c8d6b47f67674dfea929f06d7d25994c3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=881feb6c8d6b47f67674dfea92...
Author: Andrew Nguyen anguyen@codeweavers.com Date: Fri Jul 30 07:42:55 2010 -0500
krnl386.exe: Fix last error check for DOS compatibility hack. (cherry picked from commit 4e49518a38cf0447f7b60813e100c4857ffb0537)
---
dlls/krnl386.exe16/int21.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/krnl386.exe16/int21.c b/dlls/krnl386.exe16/int21.c index 4f7ae02..5f4b621 100644 --- a/dlls/krnl386.exe16/int21.c +++ b/dlls/krnl386.exe16/int21.c @@ -1092,7 +1092,8 @@ static BOOL INT21_CreateFile( CONTEXT86 *context, winMode, winAttributes, 0 ); /* DOS allows to open files on a CDROM R/W */ if( winHandle == INVALID_HANDLE_VALUE && - GetLastError()== ERROR_WRITE_PROTECT) { + (GetLastError() == ERROR_WRITE_PROTECT || + GetLastError() == ERROR_ACCESS_DENIED)) { winHandle = CreateFileW( pathW, winAccess & ~GENERIC_WRITE, winSharing, NULL, winMode, winAttributes, 0 ); }