Changeset 64737 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Nov 23, 2016 1:59:08 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPHardenedVerifyProcess-win.cpp
r62700 r64737 1187 1187 * path so that we will recognize the DLLs and their location. 1188 1188 */ 1189 int rc83Exp = VERR_IGNORED; 1189 1190 PUNICODE_STRING pLongName = &pImage->Name.UniStr; 1190 1191 if (RTNtPathFindPossible8dot3Name(pLongName->Buffer)) … … 1197 1198 memcpy(pTmp->Buffer, pLongName->Buffer, pLongName->Length + sizeof(RTUTF16)); 1198 1199 1199 RTNtPathExpand8dot3Path(pTmp, false /*fPathOnly*/); 1200 rc83Exp = RTNtPathExpand8dot3Path(pTmp, false /*fPathOnly*/); 1201 Assert(rc83Exp == VINF_SUCCESS); 1200 1202 Assert(pTmp->Buffer[pTmp->Length / sizeof(RTUTF16)] == '\0'); 1203 if (rc83Exp != VINF_SUCCESS) 1204 SUP_DPRINTF(("supHardNtVpNewImage: RTNtPathExpand8dot3Path returns %Rrc for '%ls' (-> '%ls')\n", 1205 rc83Exp, pLongName->Buffer, pTmp->Buffer)); 1201 1206 1202 1207 pLongName = pTmp; … … 1313 1318 } 1314 1319 return supHardNtVpSetInfo2(pThis, VERR_SUP_VP_NOT_KNOWN_DLL_OR_EXE, 1315 "Unknown image file %ls at %p.", pLongName->Buffer, pMemInfo->BaseAddress); 1320 "Unknown image file %ls at %p. (rc83Exp=%Rrc)", 1321 pLongName->Buffer, pMemInfo->BaseAddress, rc83Exp); 1316 1322 } 1317 1323
Note:
See TracChangeset
for help on using the changeset viewer.