VirtualBox

Changeset 58370 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Oct 22, 2015 10:34:26 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103586
Message:

DnD: Warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp

    r58329 r58370  
    18271827                 strPath.c_str(), strPath.length(), pObj->GetMode()));
    18281828
    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. */
    18301833
    18311834    VBOXDNDGHSENDDIRMSG Msg;
     
    20652068        if (strRootDest.isNotEmpty())
    20662069        {
    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. */
    20692072
    20702073            /* The total size also contains the size of the meta data. */
     
    20732076
    20742077            /* 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. */
    20762080
    20772081            VBOXDNDDATAHDR dataHeader;
     
    20802084            dataHeader.cbMeta    = cbURLIist;
    20812085            dataHeader.pvMetaFmt = (void *)szMetaFmt;
    2082             dataHeader.cbMetaFmt = strlen(szMetaFmt) + 1; /* Include termination. */
     2086            dataHeader.cbMetaFmt = cbMetaFmt;
    20832087            dataHeader.cObjects  = lstURI.TotalCount();
    20842088
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