Changeset 100018 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- May 30, 2023 5:19:51 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp
r99966 r100018 550 550 if (RT_SUCCESS(rc)) 551 551 { 552 rc = ShClTransferRootsSet(pTransfer, 553 (char *)pPayload->pvData, pPayload->cbData + 1 /* Include termination */); 552 if (pPayload) 553 { 554 rc = ShClTransferRootsSet(pTransfer, 555 (char *)pPayload->pvData, pPayload->cbData + 1 /* Include termination */); 556 } 557 else 558 rc = VERR_NO_DATA; /* No payload. */ 554 559 } 555 560 }
Note:
See TracChangeset
for help on using the changeset viewer.