VirtualBox

Ignore:
Timestamp:
Nov 26, 2009 11:31:46 AM (15 years ago)
Author:
vboxsync
Message:

Main: enable -Wshadow gcc option to warn about shadowed variables and fix all resulting warnings; in particular, rename some stack and member variables and rename getter methods like id() to getId()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ApplianceImpl.cpp

    r24872 r24989  
    11061106
    11071107    const OVFReader reader = *m->pReader;
    1108         // this is safe to access because this thread only gets started
    1109         // if pReader != NULL
     1108    // this is safe to access because this thread only gets started
     1109    // if pReader != NULL
    11101110
    11111111    /* If an manifest file exists, verify the content. Therefor we need all
     
    11671167                          vrc);
    11681168        /* Cleanup */
    1169         for (size_t i=1; i < filesList.size(); ++i)
    1170             RTStrFree(pTestList[i].pszTestDigest);
     1169        for (size_t j = 1;
     1170             j < filesList.size();
     1171             ++j)
     1172            RTStrFree(pTestList[j].pszTestDigest);
    11711173        RTMemFree(pTestList);
    11721174        if (FAILED(rc))
     
    13731375                        /* We search for the first host network interface which
    13741376                         * is usable for bridged networking */
    1375                         for (size_t i=0; i < nwInterfaces.size(); ++i)
     1377                        for (size_t j = 0;
     1378                             j < nwInterfaces.size();
     1379                             ++j)
    13761380                        {
    13771381                            HostNetworkInterfaceType_T itype;
    1378                             rc = nwInterfaces[i]->COMGETTER(InterfaceType)(&itype);
     1382                            rc = nwInterfaces[j]->COMGETTER(InterfaceType)(&itype);
    13791383                            if (FAILED(rc)) throw rc;
    13801384                            if (itype == HostNetworkInterfaceType_Bridged)
    13811385                            {
    13821386                                Bstr name;
    1383                                 rc = nwInterfaces[i]->COMGETTER(Name)(name.asOutParam());
     1387                                rc = nwInterfaces[j]->COMGETTER(Name)(name.asOutParam());
    13841388                                if (FAILED(rc)) throw rc;
    13851389                                /* Set the interface name to attach to */
     
    14041408                        /* We search for the first host network interface which
    14051409                         * is usable for host only networking */
    1406                         for (size_t i=0; i < nwInterfaces.size(); ++i)
     1410                        for (size_t j = 0;
     1411                             j < nwInterfaces.size();
     1412                             ++j)
    14071413                        {
    14081414                            HostNetworkInterfaceType_T itype;
    1409                             rc = nwInterfaces[i]->COMGETTER(InterfaceType)(&itype);
     1415                            rc = nwInterfaces[j]->COMGETTER(InterfaceType)(&itype);
    14101416                            if (FAILED(rc)) throw rc;
    14111417                            if (itype == HostNetworkInterfaceType_HostOnly)
    14121418                            {
    14131419                                Bstr name;
    1414                                 rc = nwInterfaces[i]->COMGETTER(Name)(name.asOutParam());
     1420                                rc = nwInterfaces[j]->COMGETTER(Name)(name.asOutParam());
    14151421                                if (FAILED(rc)) throw rc;
    14161422                                /* Set the interface name to attach to */
     
    15671573
    15681574                    // CD-ROMs next
    1569                     for (std::list<VirtualSystemDescriptionEntry*>::const_iterator it = vsdeCDROM.begin();
    1570                         it != vsdeCDROM.end();
    1571                         ++it)
     1575                    for (std::list<VirtualSystemDescriptionEntry*>::const_iterator jt = vsdeCDROM.begin();
     1576                         jt != vsdeCDROM.end();
     1577                         ++jt)
    15721578                    {
    15731579                        // for now always attach to secondary master on IDE controller;
    15741580                        // there seems to be no useful information in OVF where else to
    1575                         // attach it (@todo test with latest versions of OVF software)
     1581                        // attach jt (@todo test with latest versions of OVF software)
    15761582
    15771583                        // find the IDE controller
    15781584                        const HardDiskController *pController = NULL;
    1579                         for (ControllersMap::const_iterator it = vsysThis.mapControllers.begin();
    1580                              it != vsysThis.mapControllers.end();
    1581                              ++it)
     1585                        for (ControllersMap::const_iterator kt = vsysThis.mapControllers.begin();
     1586                             kt != vsysThis.mapControllers.end();
     1587                             ++kt)
    15821588                        {
    1583                             if (it->second.system == HardDiskController::IDE)
     1589                            if (kt->second.system == HardDiskController::IDE)
    15841590                            {
    1585                                 pController = &it->second;
     1591                                pController = &kt->second;
    15861592                            }
    15871593                        }
     
    43884394    CheckComRCReturnRC(autoCaller.rc());
    43894395
    4390     AutoReadLock alock(this);
     4396    AutoReadLock alock1(this);
    43914397
    43924398    ComObjPtr<VirtualSystemDescription> pNewDesc;
     
    43944400    try
    43954401    {
    4396         Bstr bstrName;
     4402        Bstr bstrName1;
    43974403        Bstr bstrDescription;
    43984404        Bstr bstrGuestOSType;
     
    44074413
    44084414        // get name
    4409         bstrName = mUserData->mName;
     4415        bstrName1 = mUserData->mName;
    44104416        // get description
    44114417        bstrDescription = mUserData->mDescription;
     
    44544460
    44554461        /* VM name */
    4456         Utf8Str strVMName(bstrName);
     4462        Utf8Str strVMName(bstrName1);
    44574463        pNewDesc->addEntry(VirtualSystemDescriptionType_Name,
    44584464                           "",
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