Changeset 22317 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 18, 2009 10:29:29 AM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r22173 r22317 2441 2441 type = OVFResourceType_Processor; // 3 2442 2442 desc.strVbox.toInt(uTemp); 2443 lVirtualQuantity = uTemp;2443 lVirtualQuantity = (int32_t)uTemp; 2444 2444 strCaption = Utf8StrFmt("%d virtual CPU", lVirtualQuantity); // without this ovftool won't eat the item 2445 2445 } -
trunk/src/VBox/Main/ConsoleImpl.cpp
r22277 r22317 4017 4017 tr ("The service call failed with the error %Rrc"), vrc); 4018 4018 } 4019 catch(std::bad_alloc & e)4019 catch(std::bad_alloc & /*e*/) 4020 4020 { 4021 4021 rc = E_OUTOFMEMORY; -
trunk/src/VBox/Main/ConsoleImpl2.cpp
r22293 r22317 1899 1899 } 1900 1900 } 1901 catch(std::bad_alloc & e)1901 catch(std::bad_alloc & /*e*/) 1902 1902 { 1903 1903 return VERR_NO_MEMORY; … … 2305 2305 } 2306 2306 Guid hostIFGuid(str); 2307 STR_FREE( str);2307 STR_FREE(); 2308 2308 2309 2309 INetCfg *pNc; … … 2619 2619 } 2620 2620 Guid hostIFGuid(str); 2621 STR_FREE( str);2621 STR_FREE(); 2622 2622 2623 2623 INetCfg *pNc;
Note:
See TracChangeset
for help on using the changeset viewer.