Changeset 99603 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- May 4, 2023 1:17:01 PM (22 months ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r99597 r99603 65 65 static DECLCALLBACK(int) vbclDnDWorker(bool volatile *pfShutdown) 66 66 { 67 AssertPtrReturn(g_pSvc, VERR_NOT_IMPLEMENTED); 67 68 return g_pSvc->worker(pfShutdown); 68 69 } … … 73 74 static DECLCALLBACK(void) vbclDnDStop(void) 74 75 { 75 g_pSvc->stop(); 76 if (g_pSvc) 77 g_pSvc->stop(); 76 78 } 77 79 -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r99601 r99603 107 107 static DECLCALLBACK(int) vbclSeamlessWorker(bool volatile *pfShutdown) 108 108 { 109 AssertPtrReturn(g_pSvc, VERR_NOT_IMPLEMENTED); 109 110 return g_pSvc->worker(pfShutdown); 110 111 } … … 115 116 static DECLCALLBACK(void) vbclSeamlessStop(void) 116 117 { 117 return g_pSvc->stop(); 118 if (g_pSvc) 119 g_pSvc->stop(); 118 120 } 119 121
Note:
See TracChangeset
for help on using the changeset viewer.