Changeset 45630 in vbox
- Timestamp:
- Apr 19, 2013 8:22:59 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/dir.cpp
r44528 r45630 534 534 { 535 535 cbFilter = cucFilter0 = 0; 536 rc = RTPath Real(pszPath, szRealPath, sizeof(szRealPath) - 1);536 rc = RTPathAbs(pszPath, szRealPath, sizeof(szRealPath) - 1); 537 537 } 538 538 else … … 548 548 return VERR_NO_MEMORY; 549 549 pszTmp[pszFilter - pszPath] = '\0'; 550 rc = RTPath Real(pszTmp, szRealPath, sizeof(szRealPath) - 1);550 rc = RTPathAbs(pszTmp, szRealPath, sizeof(szRealPath) - 1); 551 551 RTStrFree(pszTmp); 552 552 }
Note:
See TracChangeset
for help on using the changeset viewer.