Changeset 104472 in vbox for trunk/src/VBox/GuestHost/SharedClipboard
- Timestamp:
- May 2, 2024 9:39:33 AM (9 months ago)
- Location:
- trunk/src/VBox/GuestHost/SharedClipboard
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers-http.cpp
r104307 r104472 784 784 { 785 785 uint16_t uPort; 786 unsigned i = 0;787 for (i ; i < cMaxAttempts; i++)786 unsigned i; 787 for (i = 0; i < cMaxAttempts; i++) 788 788 { 789 789 /* Try some random ports >= 49152 (i.e. "dynamic ports", see RFC 6335) -
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers.cpp
r104317 r104472 3112 3112 LogFlowFunc(("idTransfer=%RU32\n", idTransfer)); 3113 3113 3114 if (ASMBitTestAndClear(&pTransferCtx->bmTransferIds, idTransfer) , ("idTransfer=%#x\n", idTransfer))3114 if (ASMBitTestAndClear(&pTransferCtx->bmTransferIds, idTransfer)) 3115 3115 { 3116 3116 PSHCLTRANSFER pTransfer = shClTransferCtxGetTransferByIdInternal(pTransferCtx, idTransfer); -
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-x11.cpp
r104316 r104472 2198 2198 } 2199 2199 2200 *pcbList ++; /* Include terminator. */2200 *pcbList += 1; /* Include terminator. */ 2201 2201 } 2202 2202
Note:
See TracChangeset
for help on using the changeset viewer.