Changeset 78810 in vbox for trunk/src/VBox
- Timestamp:
- May 28, 2019 11:00:51 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130906
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp
r78809 r78810 465 465 #endif 466 466 467 bool fAsynchronousProcessing = false; 468 467 469 switch (u32Function) 468 470 { … … 496 498 { 497 499 /* No event available at the time. Process asynchronously. */ 500 fAsynchronousProcessing = true; 501 498 502 pClientData->State.fAsync = true; 499 503 pClientData->State.async.callHandle = callHandle; … … 608 612 if (g_fDelayedAnnouncement) 609 613 { 610 vboxSvcClipboardReportMsg 614 vboxSvcClipboardReportMsg(g_pClientData, VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS, g_u32DelayedFormats); 611 615 g_fDelayedAnnouncement = false; 612 616 g_u32DelayedFormats = 0; … … 637 641 pClientData->State.asyncRead.paParms = paParms; 638 642 pClientData->State.fReadPending = true; 643 fAsynchronousProcessing = true; 639 644 VBoxSvcClipboardUnlock(); 640 645 } … … 718 723 } 719 724 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) 725 728 g_pHelpers->pfnCallComplete(callHandle, rc); 726 }727 729 } 728 730
Note:
See TracChangeset
for help on using the changeset viewer.