VirtualBox

Changeset 78810 in vbox for trunk/src/VBox


Ignore:
Timestamp:
May 28, 2019 11:00:51 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
130906
Message:

Shared Clipboard/HostSvc: Build fix.

File:
1 edited

Legend:

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

    r78809 r78810  
    465465#endif
    466466
     467    bool fAsynchronousProcessing = false;
     468
    467469    switch (u32Function)
    468470    {
     
    496498                    {
    497499                        /* No event available at the time. Process asynchronously. */
     500                        fAsynchronousProcessing = true;
     501
    498502                        pClientData->State.fAsync           = true;
    499503                        pClientData->State.async.callHandle = callHandle;
     
    608612                            if (g_fDelayedAnnouncement)
    609613                            {
    610                                 vboxSvcClipboardReportMsg (g_pClientData, VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS, g_u32DelayedFormats);
     614                                vboxSvcClipboardReportMsg(g_pClientData, VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS, g_u32DelayedFormats);
    611615                                g_fDelayedAnnouncement = false;
    612616                                g_u32DelayedFormats = 0;
     
    637641                                pClientData->State.asyncRead.paParms    = paParms;
    638642                                pClientData->State.fReadPending         = true;
     643                                fAsynchronousProcessing = true;
    639644                                VBoxSvcClipboardUnlock();
    640645                            }
     
    718723    }
    719724
    720     LogFlowFunc(("fAsync=%RTbool, %Rrc\n", pClientData->State.fAsync, rc));
    721 
    722     if (!pClientData->State.fAsync
    723         !pClientData->State.fReadPending)
    724     {
     725    LogFlowFunc(("fAsynchronousProcessing=%RTbool, %Rrc\n", fAsynchronousProcessing, rc));
     726
     727    if (!fAsynchronousProcessing)
    725728        g_pHelpers->pfnCallComplete(callHandle, rc);
    726     }
    727729}
    728730
Note: See TracChangeset for help on using the changeset viewer.

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