- Timestamp:
- Mar 20, 2015 8:25:45 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99065
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibClipboard.cpp
r44529 r54858 58 58 *pu32ClientId = Info.u32ClientID; 59 59 } 60 if (rc == VERR_HGCM_SERVICE_NOT_FOUND) 61 rc = VINF_PERMISSION_DENIED; 60 62 return rc; 61 63 } -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r52800 r54858 724 724 *pu32ClientId = Info.u32ClientID; 725 725 } 726 if (rc == VERR_HGCM_SERVICE_NOT_FOUND) 727 rc = VINF_PERMISSION_DENIED; 726 728 return rc; 727 729 } -
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r54008 r54858 202 202 } 203 203 204 if ( RT_FAILURE(rc)&& g_ctx.pBackend)204 if (rc != VINF_SUCCESS && g_ctx.pBackend) 205 205 ClipDestructX11(g_ctx.pBackend); 206 206 LogRelFlowFunc(("g_ctx.client=%u rc=%Rrc\n", g_ctx.client, rc)); … … 293 293 VBClFatalError(("Failed to connect to the VirtualBox kernel service, rc=%Rrc\n", rc)); 294 294 rc = vboxClipboardConnect(); 295 if ( RT_SUCCESS(rc))295 if (rc == VINF_SUCCESS) 296 296 rc = vboxClipboardMain(); 297 297 if (rc == VERR_NOT_SUPPORTED) -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r54008 r54858 2255 2255 int rc = VbglR3DnDConnect(&uClientID); 2256 2256 if (RT_FAILURE(rc)) 2257 {2258 2257 LogRel(("DnD: Unable to connect to drag'n drop service, rc=%Rrc\n", rc)); 2258 if (rc != VINF_SUCCESS) 2259 2259 return rc; 2260 }2261 2260 2262 2261 /* Number of invalid messages skipped in a row. */
Note:
See TracChangeset
for help on using the changeset viewer.