Changeset 50605 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Feb 26, 2014 1:53:19 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92480
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r50593 r50605 293 293 break; 294 294 295 char *pszRecDir = RTStrAPrintf2("%s %c%s", pcszPath,296 RTPATH_DELIMITER,DirEntry.szName);295 char *pszRecDir = RTStrAPrintf2("%s/%s", pcszPath, 296 DirEntry.szName); 297 297 if (pszRecDir) 298 298 { … … 307 307 case RTDIRENTRYTYPE_FILE: 308 308 { 309 char *pszNewFile = RTStrAPrintf2("%s %c%s",310 pcszPath, RTPATH_DELIMITER,DirEntry.szName);309 char *pszNewFile = RTStrAPrintf2("%s/%s", 310 pcszPath, DirEntry.szName); 311 311 if (pszNewFile) 312 312 { … … 350 350 int rc; 351 351 char *pszPathNative = RTStrDup(pszPath); 352 if (pszPathNative) 352 if (pszPathNative) 353 353 { 354 354 RTPathChangeToUnixSlashes(pszPathNative, true /* fForce */);
Note:
See TracChangeset
for help on using the changeset viewer.