- Timestamp:
- Dec 20, 2019 1:41:17 PM (5 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedClipboard
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
r82527 r82628 186 186 if (RT_SUCCESS(rc)) 187 187 { 188 *ppvData = pPayload ->pvData;189 *pcbData = pPayload ->cbData;188 *ppvData = pPayload ? pPayload->pvData : NULL; 189 *pcbData = pPayload ? pPayload->cbData : 0; 190 190 191 191 /* Detach the payload, as the caller then will own the data. */ -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp
r82539 r82628 348 348 if (RT_SUCCESS(rc)) 349 349 { 350 *ppv = pPayload ->pvData;351 *pcb = pPayload ->cbData;350 *ppv = pPayload ? pPayload->pvData : NULL; 351 *pcb = pPayload ? pPayload->cbData : 0; 352 352 353 353 /* Detach the payload, as the caller then will own the data. */
Note:
See TracChangeset
for help on using the changeset viewer.