VirtualBox

Changeset 40023 in vbox for trunk/src/VBox/Frontends/VBoxSDL


Ignore:
Timestamp:
Feb 7, 2012 9:44:31 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76146
Message:

gcc-4.7 fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r39725 r40023  
    818818    char *cdromFile = NULL;
    819819    char *fdaFile   = NULL;
    820     const char *portVRDP = NULL;
     820    const char *pszPortVRDP = NULL;
    821821    bool fDiscardState = false;
    822822#ifdef VBOX_SECURELABEL
     
    11631163        {
    11641164            // start with the standard VRDP port
    1165             portVRDP = "0";
     1165            pszPortVRDP = "0";
    11661166
    11671167            // is there another argument
     
    11691169            {
    11701170                curArg++;
    1171                 portVRDP = argv[curArg];
    1172                 LogFlow(("Using non standard VRDP port %s\n", portVRDP));
     1171                pszPortVRDP = argv[curArg];
     1172                LogFlow(("Using non standard VRDP port %s\n", pszPortVRDP));
    11731173            }
    11741174        }
     
    19121912    }
    19131913
    1914     if (portVRDP)
     1914    if (pszPortVRDP)
    19151915    {
    19161916        rc = gpMachine->COMGETTER(VRDEServer)(gpVRDEServer.asOutParam());
     
    19191919        {
    19201920            // has a non standard VRDP port been requested?
    1921             if (portVRDP > 0)
    1922             {
    1923                 rc = gpVRDEServer->SetVRDEProperty(Bstr("TCP/Ports").raw(), Bstr(portVRDP).raw());
     1921            if (strcmp(pszPortVRDP, "0"))
     1922            {
     1923                rc = gpVRDEServer->SetVRDEProperty(Bstr("TCP/Ports").raw(), Bstr(pszPortVRDP).raw());
    19241924                if (rc != S_OK)
    19251925                {
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