Changeset 34280 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Nov 23, 2010 1:16:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp
r33874 r34280 1391 1391 rc = supR3HardenedQueryFsObjectByPath(Info.szPath, &FsObjState, pszErr, cbErr); 1392 1392 if (RT_SUCCESS(rc)) 1393 rc = supR3HardenedVerifyFsObject(&FsObjState, true /*fDir*/, fRelaxed, Info.szPath, pszErr, cbErr);1393 rc = supR3HardenedVerifyFsObject(&FsObjState, true /*fDir*/, fRelaxed, Info.szPath, pszErr, cbErr); 1394 1394 if (RT_FAILURE(rc)) 1395 1395 return rc; 1396 Info.szPath[Info.aoffComponents[iComponent + 1] - 1] = iComponent + 1 == cComponents ? RTPATH_SLASH : '\0';1396 Info.szPath[Info.aoffComponents[iComponent + 1] - 1] = iComponent + 1 != cComponents ? RTPATH_SLASH : '\0'; 1397 1397 } 1398 1398 … … 1451 1451 if (RT_FAILURE(rc)) 1452 1452 return rc; 1453 Info.szPath[Info.aoffComponents[iComponent + 1] - 1] = fFinal ? RTPATH_SLASH : '\0';1453 Info.szPath[Info.aoffComponents[iComponent + 1] - 1] = !fFinal ? RTPATH_SLASH : '\0'; 1454 1454 } 1455 1455
Note:
See TracChangeset
for help on using the changeset viewer.