Changeset 91624 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Oct 7, 2021 9:14:43 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147349
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11.cpp
r90238 r91624 326 326 if (RT_SUCCESS(rc2)) 327 327 { 328 ShClEventSignal(&pCtx->pClient->EventSrc, pReq->idEvent, pPayload); 329 /* Note: Skip checking if signalling the event is successful, as it could be gone already by now. */ 328 rc2 = ShClEventSignal(&pCtx->pClient->EventSrc, pReq->idEvent, pPayload); 330 329 RTCritSectLeave(&pCtx->pClient->CritSect); 331 } 330 if (RT_SUCCESS(rc2)) 331 pPayload = NULL; 332 } 333 334 if (pPayload) 335 ShClPayloadFree(pPayload); 332 336 } 333 337
Note:
See TracChangeset
for help on using the changeset viewer.