Changeset 68344 in vbox for trunk/src/VBox
- Timestamp:
- Aug 8, 2017 5:14:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp
r66842 r68344 1191 1191 return supR3HardenedSetError3(VERR_SUPLIB_PATH_TOO_SHORT, pErrInfo, "The path is too short: '", pszPath, "'"); 1192 1192 1193 #if RTPATH_STYLE == RTPATH_STR_F_STYLE_UNIX 1194 /* 1195 * Skip double slashes. 1196 */ 1197 while (RTPATH_IS_SLASH(*pszSrc)) 1198 pszSrc++; 1199 #else 1193 1200 /* 1194 1201 * The root slash should be alone to avoid UNC confusion. … … 1197 1204 return supR3HardenedSetError3(VERR_SUPLIB_PATH_NOT_CLEAN, pErrInfo, 1198 1205 "The path is not clean of leading double slashes: '", pszPath, "'"); 1206 #endif 1199 1207 /* 1200 1208 * Check each component. No parent references.
Note:
See TracChangeset
for help on using the changeset viewer.