VirtualBox

Changeset 18273 in vbox for trunk/src


Ignore:
Timestamp:
Mar 25, 2009 6:32:26 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
45022
Message:

OVF: fix export breakage from IProgress update

File:
1 edited

Legend:

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

    r18269 r18273  
    32373237    }
    32383238
    3239     ULONG ulTotalOperationsWeight = ulTotalMB * 100 / ulPercentForDisks;
    3240     m->ulWeightPerOperation = ulTotalOperationsWeight / 100;
     3239    ULONG ulTotalOperationsWeight;
     3240    if (ulTotalMB)
     3241    {
     3242        ulTotalOperationsWeight = ulTotalMB * 100 / ulPercentForDisks;
     3243        m->ulWeightPerOperation = ulTotalOperationsWeight / 100;
     3244    }
     3245    else
     3246    {
     3247        ulTotalOperationsWeight = cFixed;
     3248        m->ulWeightPerOperation = 1;
     3249    }
    32413250
    32423251    Log(("Setting up progress object: ulTotalMB = %d, cFixed = %d, cDisks = %d, => cOperations = %d, ulTotalOperationsWeight = %d, m->ulWeightPerOperation = %d\n",
     
    38703879            Bstr bstrLocation;
    38713880            rc = pHardDisk->COMGETTER(Location)(bstrLocation.asOutParam());
     3881            if (FAILED(rc)) throw rc;
    38723882            Bstr bstrName;
    38733883            rc = pHardDisk->COMGETTER(Name)(bstrName.asOutParam());
     3884            if (FAILED(rc)) throw rc;
     3885            ULONG64 ullSize;
     3886            rc = pHardDisk->COMGETTER(Size)(&ullSize);
     3887            if (FAILED(rc)) throw rc;
    38743888
    38753889            // and how this translates to the virtual system
     
    39203934                               strTargetVmdkName,   // OVF value:
    39213935                               Utf8Str(bstrLocation), // vbox value: media path
     3936                               (uint32_t)(ullSize / _1M),
    39223937                               Utf8StrFmt("controller=%RI32;channel=%RI32", lControllerVsys, lChannelVsys));
    39233938        }
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