VirtualBox

Ignore:
Timestamp:
Mar 10, 2014 9:37:10 AM (11 years ago)
Author:
vboxsync
Message:

DnD/VBoxTray: Better fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp

    r50731 r50732  
    463463                            {
    464464                                RTCString strRoot = lstURI.RootToString();
    465                                 size_t cbRoot = strRoot.length();
     465                                size_t cbRoot = strRoot.length() + 1; /* Include termination */
    466466                                Assert(cbRoot);
    467467
    468                                 mpvData = RTMemAllocZ(cbRoot + 1 /* Include termination */);
     468                                mpvData = RTMemAlloc(cbRoot);
    469469                                if (mpvData)
    470470                                {
    471471                                    memcpy(mpvData, strRoot.c_str(), cbRoot);
    472                                     mcbData = cbRoot + 1;
     472                                    mcbData = cbRoot;
    473473                                }
    474474                                else
Note: See TracChangeset for help on using the changeset viewer.

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