Changeset 78153 in vbox for trunk/src/VBox/Runtime/r3/dir.cpp
- Timestamp:
- Apr 17, 2019 12:30:08 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130068
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/dir.cpp
r78050 r78153 543 543 544 544 cbFilter = cucFilter0 = 0; 545 pszAbsPath = RTPathAbs Dup(pszPath);545 pszAbsPath = RTPathAbsExDup(NULL, pszPath, RTPATHABS_F_ENSURE_TRAILING_SLASH); 546 546 } 547 547 else … … 557 557 return VERR_NO_MEMORY; 558 558 pszTmp[pszFilter - pszPath] = '\0'; 559 pszAbsPath = RTPathAbs Dup(pszTmp);559 pszAbsPath = RTPathAbsExDup(NULL, pszTmp, RTPATHABS_F_ENSURE_TRAILING_SLASH); 560 560 RTStrFree(pszTmp); 561 561 } 562 562 else 563 pszAbsPath = RTPathAbs Dup(".");563 pszAbsPath = RTPathAbsExDup(NULL, ".", RTPATHABS_F_ENSURE_TRAILING_SLASH); 564 564 fDirSlash = true; 565 565 } 566 566 if (!pszAbsPath) 567 567 return VERR_NO_MEMORY; 568 569 568 Assert(strchr(pszAbsPath, '\0')[-1] == RTPATH_SLASH); 570 569 571 570 /* … … 576 575 */ 577 576 size_t const cchAbsPath = strlen(pszAbsPath); 578 size_t const cchAbsPathExtra = !RTPATH_IS_SEP(pszAbsPath[cchAbsPath - 1]) ? 1 : 0; /* add trailing '/' if missing */579 577 size_t const cbDir = rtDirNativeGetStructSize(pszAbsPath); 580 578 size_t const cbAllocated = cbDir 581 579 + cucFilter0 * sizeof(RTUNICP) 582 580 + cbFilter 583 + cchAbsPath + cchAbsPathExtra +1 + 4;581 + cchAbsPath + 1 + 4; 584 582 PRTDIRINTERNAL pDir = (PRTDIRINTERNAL)RTMemAllocZ(cbAllocated); 585 583 if (!pDir) … … 627 625 break; 628 626 } 629 pDir->cchPath = cchAbsPath + cchAbsPathExtra;627 pDir->cchPath = cchAbsPath; 630 628 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); 634 631 pDir->pszName = NULL; 635 632 pDir->cchName = 0;
Note:
See TracChangeset
for help on using the changeset viewer.