Changeset 58329 in vbox for trunk/src/VBox/GuestHost/DragAndDrop
- Timestamp:
- Oct 20, 2015 10:05:12 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r58212 r58329 25 25 #include <iprt/fs.h> 26 26 #include <iprt/path.h> 27 #include <iprt/string.h> 27 28 #include <iprt/symlink.h> 28 29 #include <iprt/uri.h> … … 448 449 AssertReturn(cbData, VERR_INVALID_PARAMETER); 449 450 451 if (!RTStrIsValidEncoding(static_cast<const char *>(pvData))) 452 return VERR_INVALID_PARAMETER; 453 450 454 RTCList<RTCString> lstURI = 451 RTCString(static_cast<const char *>(pvData), cbData - 1).split("\r\n");455 RTCString(static_cast<const char *>(pvData), cbData - 1).split("\r\n"); 452 456 if (lstURI.isEmpty()) 453 457 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.