Changeset 96609 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Sep 6, 2022 2:13:23 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 153486
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp
r96407 r96609 816 816 * IOPCIFamily.kext. 817 817 */ 818 int rc = RTPathAppendEx(pszPath, RTPATH_MAX, &pszPath[cchPath], cchName );818 int rc = RTPathAppendEx(pszPath, RTPATH_MAX, &pszPath[cchPath], cchName, RTPATH_STR_F_STYLE_HOST); 819 819 if (RT_FAILURE(rc) || !RTFileExists(pszPath)) 820 820 { … … 825 825 rc = RTPathAppend(pszPath, RTPATH_MAX, pszSubDir); 826 826 if (RT_SUCCESS(rc)) 827 rc = RTPathAppendEx(pszPath, RTPATH_MAX, &pszPath[cchPath], cchName );827 rc = RTPathAppendEx(pszPath, RTPATH_MAX, &pszPath[cchPath], cchName, RTPATH_STR_F_STYLE_HOST); 828 828 if (RT_FAILURE(rc)) 829 829 {
Note:
See TracChangeset
for help on using the changeset viewer.