Changeset 48717 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Sep 26, 2013 3:19:46 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89346
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp
r48714 r48717 175 175 Log(("Clipboard content is utf-16\n")); 176 176 177 PRTUTF16 p BytePtr= (PRTUTF16)CFDataGetBytePtr(outData);178 if (p BytePtr)179 rc = RTUtf16DupEx(&pwszTmp, p BytePtr, 0);177 PRTUTF16 pwszString = (PRTUTF16)CFDataGetBytePtr(outData); 178 if (pwszString) 179 rc = RTUtf16DupEx(&pwszTmp, pwszString, 0); 180 180 else 181 181 rc = VERR_INVALID_PARAMETER; … … 186 186 { 187 187 Log(("readFromPasteboard: clipboard content is utf-8\n")); 188 rc = RTStrToUtf16((const char*)CFDataGetBytePtr(outData), &pwszTmp); 188 const char *pszString = (const char *)CFDataGetBytePtr(outData); 189 if (pszString) 190 rc = RTStrToUtf16(pszString, &pwszTmp); 191 else 192 rc = VERR_INVALID_PARAMETER; 189 193 } 190 194 if (pwszTmp)
Note:
See TracChangeset
for help on using the changeset viewer.