Changeset 100291 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Jun 26, 2023 8:10:29 AM (20 months ago)
- svn:sync-xref-src-repo-rev:
- 158006
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-transfers.cpp
r100204 r100291 1973 1973 AssertRC(rc2); 1974 1974 1975 ShClTransferCtxTransferUnregister (pTxCtx, pTransfer->State.uID);1975 ShClTransferCtxTransferUnregisterById(pTxCtx, pTransfer->State.uID); 1976 1976 1977 1977 ShClTransferDestroy(pTransfer); … … 2073 2073 2074 2074 if (RT_FAILURE(rc)) 2075 ShClTransferCtxTransferUnregister (pTxCtx, uTransferID);2075 ShClTransferCtxTransferUnregisterById(pTxCtx, uTransferID); 2076 2076 } 2077 2077 } … … 2167 2167 /* Regardless of whether the guest was able to report back and/or stop the transfer, remove the transfer on the host 2168 2168 * so that we don't risk of having stale transfers here. */ 2169 int rc2 = ShClTransferCtxTransferUnregister (&pClient->Transfers.Ctx, ShClTransferGetID(pTransfer));2169 int rc2 = ShClTransferCtxTransferUnregisterById(&pClient->Transfers.Ctx, ShClTransferGetID(pTransfer)); 2170 2170 if (RT_SUCCESS(rc2)) 2171 2171 {
Note:
See TracChangeset
for help on using the changeset viewer.