Changeset 31897 in vbox
- Timestamp:
- Aug 24, 2010 9:23:10 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPool.cpp
r31895 r31897 854 854 case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB: 855 855 case PGMPOOLKIND_32BIT_PT_FOR_PHYS: 856 for (unsigned iShw = 0; iShw < RT_ELEMENTS(uShw.pPT ); iShw++)856 for (unsigned iShw = 0; iShw < RT_ELEMENTS(uShw.pPT->a); iShw++) 857 857 { 858 858 if (uShw.pPT->a[iShw].n.u1Present) … … 866 866 case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB: 867 867 case PGMPOOLKIND_PAE_PT_FOR_PHYS: 868 for (unsigned iShw = 0; iShw < RT_ELEMENTS(uShw.pPTPae ); iShw++)868 for (unsigned iShw = 0; iShw < RT_ELEMENTS(uShw.pPTPae->a); iShw++) 869 869 { 870 870 if (uShw.pPTPae->a[iShw].n.u1Present) … … 874 874 875 875 case PGMPOOLKIND_EPT_PT_FOR_PHYS: 876 for (unsigned iShw = 0; iShw < RT_ELEMENTS(uShw.pPTEpt ); iShw++)876 for (unsigned iShw = 0; iShw < RT_ELEMENTS(uShw.pPTEpt->a); iShw++) 877 877 { 878 878 if (uShw.pPTEpt->a[iShw].n.u1Present)
Note:
See TracChangeset
for help on using the changeset viewer.