Changeset 80998 in vbox
- Timestamp:
- Sep 25, 2019 7:45:51 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-darwin.cpp
r80997 r80998 106 106 ShClSvcLock(); 107 107 vboxClipboardChanged(pCtx); 108 VBoxSvcClipboardUnlock();108 ShClSvcUnlock(); 109 109 110 110 /* Sleep for 200 msecs before next poll */ … … 174 174 int rc = ShClSvcImplSync(pClient); 175 175 176 VBoxSvcClipboardUnlock();176 ShClSvcUnlock(); 177 177 return rc; 178 178 } … … 185 185 int rc = vboxClipboardChanged(pClient->State.pCtx); 186 186 187 VBoxSvcClipboardUnlock();187 ShClSvcUnlock(); 188 188 189 189 return rc; … … 196 196 pClient->State.pCtx->pClient = NULL; 197 197 198 VBoxSvcClipboardUnlock();198 ShClSvcUnlock(); 199 199 200 200 return VINF_SUCCESS; … … 249 249 pData->uFormat, pData->pvData, pData->cbData, pcbActual); 250 250 251 VBoxSvcClipboardUnlock();251 ShClSvcUnlock(); 252 252 253 253 return rc; … … 271 271 writeToPasteboard(pClient->State.pCtx->pasteboard, pData->pvData, pData->cbData, pData->uFormat); 272 272 273 VBoxSvcClipboardUnlock();273 ShClSvcUnlock(); 274 274 275 275 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.