VirtualBox

Changeset 45624 in vbox for trunk/src


Ignore:
Timestamp:
Apr 18, 2013 10:09:24 PM (12 years ago)
Author:
vboxsync
Message:

build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/MachineImpl.cpp

    r45622 r45624  
    20592059                *aVal = FALSE;
    20602060
    2061                 ComPtr<IGuestOSType> guestOSType;
    2062                 HRESULT hrc2 = mParent->GetGuestOSType(Bstr(mUserData->s.strOsType).raw(), guestOSType.asOutParam());
     2061                ComPtr<IGuestOSType> ptrGuestOSType;
     2062                HRESULT hrc2 = mParent->GetGuestOSType(Bstr(mUserData->s.strOsType).raw(), ptrGuestOSType.asOutParam());
    20632063                if (SUCCEEDED(hrc2))
    20642064                {
    20652065                    BOOL fIs64Bit = FALSE;
    2066                     hrc2 = pGuestOSType->COMGETTER(Is64Bit)(&fIs64Bit); AssertComRC(hrc);
     2066                    hrc2 = ptrGuestOSType->COMGETTER(Is64Bit)(&fIs64Bit); AssertComRC(hrc2);
    20672067                    if (SUCCEEDED(hrc2) && fIs64Bit)
    20682068                    {
    20692069                        ComObjPtr<Host> ptrHost = mParent->host();
    20702070                        alock.release();
    2071                         hrc2 = ptrHost->GetProcessorFeature(ProcessorFeature_LongMode, aVal)
    2072                         AssertComRC(hrc);
    2073                         if (FAILURE(hrc2))
     2071
     2072                        hrc2 = ptrHost->GetProcessorFeature(ProcessorFeature_LongMode, aVal); AssertComRC(hrc2);
     2073                        if (FAILED(hrc2))
    20742074                            *aVal = FALSE;
    20752075                    }
     2076                }
    20762077            }
    20772078#endif
Note: See TracChangeset for help on using the changeset viewer.

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