Changeset 82849 in vbox for trunk/src/VBox
- Timestamp:
- Jan 24, 2020 10:36:08 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp
r82846 r82849 5 5 6 6 /* 7 * Copyright (C) 2006-20 19Oracle Corporation7 * Copyright (C) 2006-2020 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 501 501 * Adds a new message to a client'S message queue. 502 502 * 503 * @returns IPRT status code.504 503 * @param pClient Pointer to the client data structure to add new message to. 505 504 * @param pMsg Pointer to message to add. The queue then owns the pointer. … … 1198 1197 } 1199 1198 else 1200 rc = VERR_ TRY_AGAIN;1199 rc = VERR_SHCLPB_MAX_EVENTS_REACHED; 1201 1200 1202 1201 RTCritSectLeave(&pClient->CritSect); … … 2177 2176 static SSMFIELD const s_aShClSSMClientMsgCtx[] = 2178 2177 { 2179 SSMFIELD_ENTRY(SHCLCLIENTMSG, idC ontext),2178 SSMFIELD_ENTRY(SHCLCLIENTMSG, idCtx), 2180 2179 SSMFIELD_ENTRY_TERM() 2181 2180 }; … … 2332 2331 PSHCLCLIENTMSG pMsg = shClSvcMsgAlloc(pClient, u.Msg.idMsg, u.Msg.cParms); 2333 2332 AssertReturn(pMsg, VERR_NO_MEMORY); 2334 pMsg->idC ontext = u.Msg.idContext;2333 pMsg->idCtx = u.Msg.idCtx; 2335 2334 2336 2335 for (uint32_t p = 0; p < pMsg->cParms; p++)
Note:
See TracChangeset
for help on using the changeset viewer.