Changeset 50610 in vbox for trunk/src/VBox/GuestHost/DragAndDrop
- Timestamp:
- Feb 26, 2014 2:35:56 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r50605 r50610 293 293 break; 294 294 295 char *pszRecDir = RTStrAPrintf2("%s/%s", pcszPath, 296 DirEntry.szName); 295 char *pszRecDir = RTPathJoinA(pcszPath, DirEntry.szName); 297 296 if (pszRecDir) 298 297 { … … 307 306 case RTDIRENTRYTYPE_FILE: 308 307 { 309 char *pszNewFile = RTStrAPrintf2("%s/%s", 310 pcszPath, DirEntry.szName); 308 char *pszNewFile = RTPathJoinA(pcszPath, DirEntry.szName); 311 309 if (pszNewFile) 312 310 {
Note:
See TracChangeset
for help on using the changeset viewer.