- Timestamp:
- Nov 7, 2023 1:05:00 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 160037
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/wayland-helper-gtk.cpp
r101883 r101940 272 272 AssertPtrReturn(phIpcSession, VERR_INVALID_PARAMETER); 273 273 274 const vbcl::ipc::flow_t 274 const vbcl::ipc::flow_t *pFlow; 275 275 276 276 int rc = VINF_SUCCESS; … … 289 289 pFlow = vbcl::ipc::clipboard::GHCopyFlow; 290 290 else 291 { 292 pFlow = NULL; 291 293 rc = VERR_INVALID_PARAMETER; 294 } 292 295 293 296 /* Proceed with selected flow. */ 294 if (RT_ SUCCESS(rc))297 if (RT_VALID_PTR(pFlow)) 295 298 rc = g_GtkCtx.Session.oClipboardIpc->flow(pFlow, *phIpcSession); 296 299
Note:
See TracChangeset
for help on using the changeset viewer.