VirtualBox

Ignore:
Timestamp:
Sep 26, 2013 3:19:46 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
89346
Message:

OS X host: shared clipboard service: fix potential SEGFAULT when working with UTF16 content: updated coding style, treat more carefully with UTF8 content as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp

    r48714 r48717  
    175175                Log(("Clipboard content is utf-16\n"));
    176176
    177                 PRTUTF16 pBytePtr = (PRTUTF16)CFDataGetBytePtr(outData);
    178                 if (pBytePtr)
    179                     rc = RTUtf16DupEx(&pwszTmp, pBytePtr, 0);
     177                PRTUTF16 pwszString = (PRTUTF16)CFDataGetBytePtr(outData);
     178                if (pwszString)
     179                    rc = RTUtf16DupEx(&pwszTmp, pwszString, 0);
    180180                else
    181181                    rc = VERR_INVALID_PARAMETER;
     
    186186                {
    187187                    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;
    189193                }
    190194            if (pwszTmp)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette