Changeset 92240 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Nov 5, 2021 2:38:31 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148076
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp
r92239 r92240 2049 2049 if (RT_SUCCESS(rc)) 2050 2050 { 2051 /* Assign weak pointer to client map .*/ 2051 /* Assign weak pointer to client map. */ 2052 /** @todo r=bird: The g_mapClients is only there for looking up 2053 * g_ExtState.uClientID (unserialized btw), so why not use store the 2054 * pClient value directly in g_ExtState instead of the ID? It cannot 2055 * crash any worse that racing map insertion/removal. */ 2052 2056 g_mapClients[u32ClientID] = pClient; /** @todo Handle OOM / collisions? */ 2053 2057 … … 2057 2061 /* Sync the host clipboard content with the client. */ 2058 2062 rc = ShClBackendSync(pClient); 2059 if (rc == VINF_NO_CHANGE)2060 {2061 /*2062 * The sync could return VINF_NO_CHANGE if nothing has changed on the host, but older2063 * Guest Additions rely on the fact that only VINF_SUCCESS indicates a successful connect2064 * to the host service (instead of using RT_SUCCESS()).2065 *2066 * So implicitly set VINF_SUCCESS here to not break older Guest Additions.2067 */2068 rc = VINF_SUCCESS;2069 }2070 2071 2063 if (RT_SUCCESS(rc)) 2072 2064 { … … 2078 2070 g_ExtState.uClientID = u32ClientID; 2079 2071 2080 LogFunc(("Successfully connected client %#x\n", u32ClientID)); 2081 return rc; 2072 /* The sync could return VINF_NO_CHANGE if nothing has changed on the host, but 2073 older Guest Additions didn't use RT_SUCCESS to but == VINF_SUCCESS to check for 2074 success. So just return VINF_SUCCESS here to not break older Guest Additions. */ 2075 LogFunc(("Successfully connected client %#x%s\n", 2076 u32ClientID, g_ExtState.uClientID == u32ClientID ? " - Use by ExtState too" : "")); 2077 return VINF_SUCCESS; 2082 2078 } 2083 2079
Note:
See TracChangeset
for help on using the changeset viewer.