summaryrefslogtreecommitdiffstats
path: root/src/VBox/HostServices/SharedClipboard
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/HostServices/SharedClipboard')
-rw-r--r--src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp b/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp
index 290763be..41d08be5 100644
--- a/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp
+++ b/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp
@@ -308,7 +308,7 @@ int readFromPasteboard(PasteboardRef pPasteboard, uint32_t fFormat, void *pv, ui
*/
Assert(cwcSrc == RTUtf16Len(pwszSrc));
size_t cwcDst = 0;
- rc = ShClUtf16LFLenUtf8(pwszSrc, cwcSrc, &cwcDst);
+ rc = ShClUtf16CalcNormalizedEolToCRLFLength(pwszSrc, cwcSrc, &cwcDst);
if (RT_SUCCESS(rc))
{
cwcDst++; /* Add space for terminator. */