Changeset 50316 in vbox for trunk/src/VBox/HostServices/DragAndDrop
- Timestamp:
- Feb 4, 2014 8:03:23 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92032
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp
r50308 r50316 351 351 * file scheme NULL is returned. */ 352 352 char *pszFilePath; 353 if ( pszFilePath = RTUriFilePath(strURI.c_str(), URI_FILE_FORMAT_AUTO))353 if ((pszFilePath = RTUriFilePath(strURI.c_str(), URI_FILE_FORMAT_AUTO))) 354 354 { 355 355 /* Add the path to our internal file list (recursive in 356 356 * the case of a directory). */ 357 357 char *pszFilename; 358 if ( pszFilename = RTPathFilename(pszFilePath))358 if ((pszFilename = RTPathFilename(pszFilePath))) 359 359 { 360 360 char *pszNewURI = RTUriFileCreate(pszFilename); … … 559 559 { 560 560 char *pszNewFile; 561 if ( pszNewFile = RTStrAPrintf2("%s%c%s", pcszPath, RTPATH_DELIMITER, DirEntry.szName))561 if ((pszNewFile = RTStrAPrintf2("%s%c%s", pcszPath, RTPATH_DELIMITER, DirEntry.szName))) 562 562 { 563 563 /* We need the size and the mode of the file. */
Note:
See TracChangeset
for help on using the changeset viewer.