VirtualBox

Changeset 96609 in vbox for trunk/src/VBox/Runtime/tools


Ignore:
Timestamp:
Sep 6, 2022 2:13:23 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
153486
Message:

IPRT/path: Added fFlags parameter to RTPathAppendEx and RTPathJoinEx to make it possible to select the path style. bugref:10286

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp

    r96407 r96609  
    816816     * IOPCIFamily.kext.
    817817     */
    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);
    819819    if (RT_FAILURE(rc) || !RTFileExists(pszPath))
    820820    {
     
    825825        rc = RTPathAppend(pszPath, RTPATH_MAX, pszSubDir);
    826826        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);
    828828        if (RT_FAILURE(rc))
    829829        {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette