http://bugs.winehq.org/show_bug.cgi?id=7102
Summary: GetFileAttributes returns wrong error code 123 Product: Wine Version: 0.9.28. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-kernel AssignedTo: wine-bugs@winehq.org ReportedBy: felix.huber@schyf.de
Winword 6 makes a (wrong) call to GetFileAttributes with the path set to "C:\WINDOWS\TEMP*.AS$". This call returns an error code of 123 (ERROR_INVALID_NAME) which then leads to a fixme:int21:INT21_GetExtendedError Unknown error 123. A test with plain DOS or Windows 98 shows that the error code should be 02 (ERROR_FILE_NOT_FOUND). The internal wine error code was found to be 0xC0000033 and should probably be changed to 0xC0000034 or the error mapping table should be changed.