- Timestamp:
- Jul 31, 2020 5:14:22 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibDragAndDrop.cpp
r85585 r85587 1667 1667 RT_ZERO(dataHdr); 1668 1668 1669 /* For raw data only the total size is required to be specified. */1669 dataHdr.cbMeta = (uint32_t)cbData; 1670 1670 dataHdr.cbTotal = cbData; 1671 1671 … … 1757 1757 LogFlowFunc(("pszFormat=%s, pvData=%p, cbData=%RU32\n", pszFormat, pvData, cbData)); 1758 1758 1759 LogRel2(("DnD: Sending %RU32 bytes meta data in format '%s'\n", cbData, pszFormat)); 1760 1759 1761 int rc; 1760 1762 if (DnDMIMEHasFileURLs(pszFormat, strlen(pszFormat))) … … 1776 1778 DnDTransferListDestroy(&lstTransfer); 1777 1779 } 1778 1779 if (RT_FAILURE(rc))1780 LogRel(("DnD: Sending guest meta data to host failed with %Rrc\n", rc));1781 1780 } 1782 1781 else … … 1785 1784 if (RT_FAILURE(rc)) 1786 1785 { 1787 int rc2 = VbglR3DnDGHSendError(pCtx, rc); 1788 if (RT_FAILURE(rc2)) 1789 LogFlowFunc(("Unable to send error (%Rrc) to host, rc=%Rrc\n", rc, rc2)); 1786 LogRel(("DnD: Sending data failed with rc=%Rrc\n", rc)); 1787 1788 if (rc != VERR_CANCELLED) 1789 { 1790 int rc2 = VbglR3DnDGHSendError(pCtx, rc); 1791 if (RT_FAILURE(rc2)) 1792 LogFlowFunc(("Unable to send error (%Rrc) to host, rc=%Rrc\n", rc, rc2)); 1793 } 1790 1794 } 1791 1795
Note:
See TracChangeset
for help on using the changeset viewer.