Changeset 58370 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Oct 22, 2015 10:34:26 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r58329 r58370 1827 1827 strPath.c_str(), strPath.length(), pObj->GetMode())); 1828 1828 1829 const uint32_t cbPath = strPath.length() + 1; /* Include termination. */ 1829 if (strPath.length() > RTPATH_MAX) 1830 return VERR_INVALID_PARAMETER; 1831 1832 const uint32_t cbPath = (uint32_t)strPath.length() + 1; /* Include termination. */ 1830 1833 1831 1834 VBOXDNDGHSENDDIRMSG Msg; … … 2065 2068 if (strRootDest.isNotEmpty()) 2066 2069 { 2067 void *pvURIList = (void *)strRootDest.c_str();/* URI root list. */2068 size_t cbURLIist = strRootDest.length() + 1;/* Include string termination. */2070 void *pvURIList = (void *)strRootDest.c_str(); /* URI root list. */ 2071 uint32_t cbURLIist = (uint32_t)strRootDest.length() + 1; /* Include string termination. */ 2069 2072 2070 2073 /* The total size also contains the size of the meta data. */ … … 2073 2076 2074 2077 /* We're going to send an URI list in text format. */ 2075 char szMetaFmt[] = "text/uri-list"; 2078 const char szMetaFmt[] = "text/uri-list"; 2079 const uint32_t cbMetaFmt = (uint32_t)strlen(szMetaFmt) + 1; /* Include termination. */ 2076 2080 2077 2081 VBOXDNDDATAHDR dataHeader; … … 2080 2084 dataHeader.cbMeta = cbURLIist; 2081 2085 dataHeader.pvMetaFmt = (void *)szMetaFmt; 2082 dataHeader.cbMetaFmt = strlen(szMetaFmt) + 1; /* Include termination. */2086 dataHeader.cbMetaFmt = cbMetaFmt; 2083 2087 dataHeader.cObjects = lstURI.TotalCount(); 2084 2088
Note:
See TracChangeset
for help on using the changeset viewer.