Changeset 46277 in vbox
- Timestamp:
- May 26, 2013 11:00:21 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp
r46275 r46277 1543 1543 if ( Sym.NumberOfAuxSymbols == 1 1544 1544 && ( iLineSect == 1 1545 || Sym.SectionNumber == iLineSect) )1545 || Sym.SectionNumber == (int32_t)iLineSect) ) 1546 1546 { 1547 1547 memcpy(&Aux, &paSymbols[iSymbol + 1], sizeof(Aux)); … … 1554 1554 Aux.Section.Selection, 1555 1555 Aux.Section.bReserved)); 1556 if ( Sym.SectionNumber == iLineSect1556 if ( Sym.SectionNumber == (int32_t)iLineSect 1557 1557 && Aux.Section.NumberOfLinenumbers > 0) 1558 1558 { … … 2321 2321 if (pThis) 2322 2322 { 2323 PRTDBGMODCV pThis = (PRTDBGMODCV)pDbgMod->pvDbgPriv;2324 2323 pThis->cbImage = DbgHdr.SizeOfImage; 2325 2324 if (pDbgMod->pImgVt)
Note:
See TracChangeset
for help on using the changeset viewer.