VirtualBox

Ignore:
Timestamp:
Apr 17, 2019 12:30:08 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
130068
Message:

IPRT: Added RTPATHABS_F_ENSURE_TRAILING_SLASH to RTPathAbsEx and fixed a couple of issues related to VERR_BUFFER_OVERFLOW code paths. bugref:9172

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/dir.cpp

    r78050 r78153  
    543543
    544544        cbFilter = cucFilter0 = 0;
    545         pszAbsPath = RTPathAbsDup(pszPath);
     545        pszAbsPath = RTPathAbsExDup(NULL, pszPath, RTPATHABS_F_ENSURE_TRAILING_SLASH);
    546546    }
    547547    else
     
    557557                return VERR_NO_MEMORY;
    558558            pszTmp[pszFilter - pszPath] = '\0';
    559             pszAbsPath = RTPathAbsDup(pszTmp);
     559            pszAbsPath = RTPathAbsExDup(NULL, pszTmp, RTPATHABS_F_ENSURE_TRAILING_SLASH);
    560560            RTStrFree(pszTmp);
    561561        }
    562562        else
    563             pszAbsPath = RTPathAbsDup(".");
     563            pszAbsPath = RTPathAbsExDup(NULL, ".", RTPATHABS_F_ENSURE_TRAILING_SLASH);
    564564        fDirSlash = true;
    565565    }
    566566    if (!pszAbsPath)
    567567        return VERR_NO_MEMORY;
    568 
    569 
     568    Assert(strchr(pszAbsPath, '\0')[-1] == RTPATH_SLASH);
    570569
    571570    /*
     
    576575     */
    577576    size_t const cchAbsPath      = strlen(pszAbsPath);
    578     size_t const cchAbsPathExtra = !RTPATH_IS_SEP(pszAbsPath[cchAbsPath - 1]) ? 1 : 0; /* add trailing '/' if missing */
    579577    size_t const cbDir           = rtDirNativeGetStructSize(pszAbsPath);
    580578    size_t const cbAllocated     = cbDir
    581579                                 + cucFilter0 * sizeof(RTUNICP)
    582580                                 + cbFilter
    583                                  + cchAbsPath + cchAbsPathExtra + 1 + 4;
     581                                 + cchAbsPath + 1 + 4;
    584582    PRTDIRINTERNAL pDir = (PRTDIRINTERNAL)RTMemAllocZ(cbAllocated);
    585583    if (!pDir)
     
    627625            break;
    628626    }
    629     pDir->cchPath       = cchAbsPath + cchAbsPathExtra;
     627    pDir->cchPath       = cchAbsPath;
    630628    pDir->pszPath       = (char *)memcpy(pb, pszAbsPath, cchAbsPath);
    631     pb[cchAbsPath]                   = RTPATH_SLASH;
    632     pb[cchAbsPath + cchAbsPathExtra] = '\0';
    633     Assert(pb - (uint8_t *)pDir + cchAbsPath + cchAbsPathExtra + 1 <= cbAllocated);
     629    pb[cchAbsPath]      = '\0';
     630    Assert(pb - (uint8_t *)pDir + cchAbsPath + 1 <= cbAllocated);
    634631    pDir->pszName       = NULL;
    635632    pDir->cchName       = 0;
Note: See TracChangeset for help on using the changeset viewer.

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