Changeset 103451 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Feb 19, 2024 3:00:58 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 161782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-win.cpp
r103450 r103451 1203 1203 int SharedClipboardWinTransferHandOffToDataObject(PSHCLWINCTX pWinCtx, PSHCLTRANSFER pTransfer) 1204 1204 { 1205 int rc = RTCritSectEnter(&p Ctx->Win.CritSect);1205 int rc = RTCritSectEnter(&pWinCtx->CritSect); 1206 1206 if (RT_SUCCESS(rc)) 1207 1207 { 1208 SharedClipboardWinDataObject *pObj = p Ctx->Win.pDataObjInFlight;1208 SharedClipboardWinDataObject *pObj = pWinCtx->pDataObjInFlight; 1209 1209 if (pObj) 1210 1210 { … … 1213 1213 rc = pObj->SetStatus(SharedClipboardWinDataObject::Running); 1214 1214 1215 p Ctx->Win.pDataObjInFlight = NULL; /* Hand off to Windows. */1215 pWinCtx->pDataObjInFlight = NULL; /* Hand off to Windows. */ 1216 1216 } 1217 1217 else … … 1221 1221 } 1222 1222 1223 int rc2 = RTCritSectLeave(&p Ctx->Win.CritSect);1223 int rc2 = RTCritSectLeave(&pWinCtx->CritSect); 1224 1224 AssertRC(rc2); 1225 1225 }
Note:
See TracChangeset
for help on using the changeset viewer.