Changeset 85763 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Aug 14, 2020 11:03:34 AM (4 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedClipboard
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp
r84142 r85763 247 247 void *pvData, uint32_t cbData, uint32_t *pcbActual) 248 248 { 249 AssertPtrReturn(pClient, VERR_INVALID_POINTER); 250 AssertPtrReturn(pCmdCtx, VERR_INVALID_POINTER); 251 AssertPtrReturn(pvData, VERR_INVALID_POINTER); 252 AssertPtrReturn(pcbActual, VERR_INVALID_POINTER); 253 249 254 RT_NOREF(pCmdCtx); 250 255 -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
r85121 r85763 716 716 SHCLFORMAT uFormat, void *pvData, uint32_t cbData, uint32_t *pcbActual) 717 717 { 718 AssertPtrReturn(pClient, VERR_INVALID_POINTER); 718 AssertPtrReturn(pClient, VERR_INVALID_POINTER); 719 AssertPtrReturn(pCmdCtx, VERR_INVALID_POINTER); 720 AssertPtrReturn(pvData, VERR_INVALID_POINTER); 721 AssertPtrReturn(pcbActual, VERR_INVALID_POINTER); 722 719 723 RT_NOREF(pCmdCtx); 720 AssertPtrReturn(pvData, VERR_INVALID_POINTER); 724 721 725 AssertPtrReturn(pClient->State.pCtx, VERR_INVALID_POINTER); 722 726 -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp
r85762 r85763 176 176 PSHCLCLIENTCMDCTX pCmdCtx, SHCLFORMAT uFormat, void *pvData, uint32_t cbData, uint32_t *pcbActual) 177 177 { 178 AssertPtrReturn(pClient, VERR_INVALID_POINTER); 179 AssertPtrReturn(pCmdCtx, VERR_INVALID_POINTER); 180 AssertPtrReturn(pvData, VERR_INVALID_POINTER); 178 AssertPtrReturn(pClient, VERR_INVALID_POINTER); 179 AssertPtrReturn(pCmdCtx, VERR_INVALID_POINTER); 180 AssertPtrReturn(pvData, VERR_INVALID_POINTER); 181 AssertPtrReturn(pcbActual, VERR_INVALID_POINTER); 181 182 182 183 RT_NOREF(pCmdCtx);
Note:
See TracChangeset
for help on using the changeset viewer.