Changeset 877
- Timestamp:
- Jun 30, 2011, 6:46:41 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/plugin/qlibrary_os2.cpp
r659 r877 103 103 char errModule[CCHMAXPATH] = { '\0' }; 104 104 rc = DosLoadModule(errModule, sizeof(errModule), attempt, &pHnd); 105 if (rc == ERROR_FILE_NOT_FOUND) { 105 if (rc == ERROR_FILE_NOT_FOUND && qstricmp(attempt, errModule) == 0) { 106 // only retry with .DLL appended if the failed module is the tried one 106 107 attempt += ".DLL"; 107 108 rc = DosLoadModule(errModule, sizeof(errModule), attempt, &pHnd);
Note:
See TracChangeset
for help on using the changeset viewer.