VirtualBox

Changeset 82849 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jan 24, 2020 10:36:08 AM (5 years ago)
Author:
vboxsync
Message:

Shared Clipboard: More fixes to get the transfer code compiled again. bugref:9437

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp

    r82846 r82849  
    55
    66/*
    7  * Copyright (C) 2006-2019 Oracle Corporation
     7 * Copyright (C) 2006-2020 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    501501 * Adds a new message to a client'S message queue.
    502502 *
    503  * @returns IPRT status code.
    504503 * @param   pClient             Pointer to the client data structure to add new message to.
    505504 * @param   pMsg                Pointer to message to add. The queue then owns the pointer.
     
    11981197        }
    11991198        else
    1200             rc = VERR_TRY_AGAIN;
     1199            rc = VERR_SHCLPB_MAX_EVENTS_REACHED;
    12011200
    12021201        RTCritSectLeave(&pClient->CritSect);
     
    21772176static SSMFIELD const s_aShClSSMClientMsgCtx[] =
    21782177{
    2179     SSMFIELD_ENTRY(SHCLCLIENTMSG, idContext),
     2178    SSMFIELD_ENTRY(SHCLCLIENTMSG, idCtx),
    21802179    SSMFIELD_ENTRY_TERM()
    21812180};
     
    23322331            PSHCLCLIENTMSG pMsg = shClSvcMsgAlloc(pClient, u.Msg.idMsg, u.Msg.cParms);
    23332332            AssertReturn(pMsg, VERR_NO_MEMORY);
    2334             pMsg->idContext = u.Msg.idContext;
     2333            pMsg->idCtx = u.Msg.idCtx;
    23352334
    23362335            for (uint32_t p = 0; p < pMsg->cParms; p++)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette