VirtualBox

Ignore:
Timestamp:
Nov 5, 2021 2:38:31 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
148076
Message:

SharedClipboard: Made svcConnect just never return any informational status code, instead of just supressing VINF_NO_CHANGE because that's bound to fail again some time. Left a todo regarding g_mapClient being unsafe and overkill. bugref:9437

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp

    r92239 r92240  
    20492049    if (RT_SUCCESS(rc))
    20502050    {
    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. */
    20522056        g_mapClients[u32ClientID] = pClient; /** @todo Handle OOM / collisions? */
    20532057
     
    20572061            /* Sync the host clipboard content with the client. */
    20582062            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 older
    2063                  * Guest Additions rely on the fact that only VINF_SUCCESS indicates a successful connect
    2064                  * 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 
    20712063            if (RT_SUCCESS(rc))
    20722064            {
     
    20782070                    g_ExtState.uClientID = u32ClientID;
    20792071
    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;
    20822078            }
    20832079
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette