Changeset 21024 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Jun 29, 2009 1:52:08 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49250
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/x11-clipboard.cpp
r20551 r21024 310 310 Assert(pCtx->pReq == NULL); 311 311 RTCritSectLeave(&pCtx->clipboardMutex); 312 if (RT_SUCCESS(rc) && (pReq->pv == NULL)) 313 rc = VERR_NO_DATA; 312 314 LogFlowFunc(("returning %Rrc\n", rc)); 313 315 return rc; … … 584 586 if (rc != VERR_TIMEOUT) 585 587 { 586 RTPrintf("rc=%Rrc\n", rc); 588 RTPrintf("rc=%Rrc, expected VERR_TIMEOUT\n", rc); 589 ++cErrors; 590 } 591 pBackend->writeData.pv = NULL; 592 pBackend->writeData.cb = 0; 593 pBackend->writeData.timeout = false; 594 rc = ClipRequestDataForX11(client.pCtx, 23, &pv, &cb); 595 if (rc != VERR_NO_DATA) 596 { 597 RTPrintf("rc=%Rrc, expected VERR_NO_DATA\n", rc); 587 598 ++cErrors; 588 599 }
Note:
See TracChangeset
for help on using the changeset viewer.