Changeset 12904 in vbox for trunk/src/VBox/Main/ConsoleImpl.cpp
- Timestamp:
- Oct 2, 2008 9:02:59 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r12889 r12904 4417 4417 /* Count the number of entries we have */ 4418 4418 unsigned cValues = 0; 4419 for (PCFGMLEAF pValue = CFGMR3GetFirstValue (pValues); pValue != NULL; 4419 PCFGMLEAF pValue; 4420 for (pValue = CFGMR3GetFirstValue (pValues); pValue != NULL; 4420 4421 pValue = CFGMR3GetNextValue (pValue)) 4421 4422 ++cValues; … … 4425 4426 com::SafeArray <ULONG64> timestamps(cValues); 4426 4427 com::SafeArray <BSTR> flags(cValues); 4427 PCFGMLEAFpValue = CFGMR3GetFirstValue (pValues);4428 pValue = CFGMR3GetFirstValue (pValues); 4428 4429 vrc = VINF_SUCCESS; 4429 4430 unsigned iProp = 0;
Note:
See TracChangeset
for help on using the changeset viewer.