Changeset 11458 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Aug 18, 2008 9:38:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r11457 r11458 717 717 */ 718 718 unsigned cb = 0; 719 uint64_t uData1 ;720 uint64_t uData2 ;719 uint64_t uData1 = 0; 720 uint64_t uData2 = 0; 721 721 int rc; 722 722 if (iomGetRegImmData(pCpu, &pCpu->param1, pRegFrame, &uData1, &cb)) … … 765 765 static int iomInterpretOrXorAnd(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PFN_EMULATE_PARAM3 pfnEmulate) 766 766 { 767 unsigned cb = 0;768 uint64_t uData1 ;769 uint64_t uData2 ;767 unsigned cb = 0; 768 uint64_t uData1 = 0; 769 uint64_t uData2 = 0; 770 770 bool fAndWrite; 771 771 int rc; … … 854 854 Assert(pRange->CTXALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 855 855 856 unsigned cb = 0;857 uint64_t uData1 ;858 uint64_t uData2 ;856 unsigned cb = 0; 857 uint64_t uData1 = 0; 858 uint64_t uData2 = 0; 859 859 int rc; 860 860 … … 905 905 Assert(pRange->CTXALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 906 906 907 uint64_t uBit = 0;907 uint64_t uBit = 0; 908 908 uint64_t uData1 = 0; 909 unsigned cb = 0; 909 910 int rc; 910 unsigned cb;911 911 912 912 if (iomGetRegImmData(pCpu, &pCpu->param2, pRegFrame, &uBit, &cb)) … … 959 959 960 960 int rc; 961 unsigned cb = 0;962 uint64_t uData1 ;963 uint64_t uData2 ;961 unsigned cb = 0; 962 uint64_t uData1 = 0; 963 uint64_t uData2 = 0; 964 964 if (iomGetRegImmData(pCpu, &pCpu->param1, pRegFrame, &uData1, &cb)) 965 965 {
Note:
See TracChangeset
for help on using the changeset viewer.