Changeset 82027 in vbox for trunk/src/VBox/Runtime/common/dbg
- Timestamp:
- Nov 20, 2019 3:20:12 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
r77913 r82027 3412 3412 * Common information entry (CIE). Record the info we need about it. 3413 3413 */ 3414 if ((cCies &8) == 0)3414 if ((cCies % 8) == 0) 3415 3415 { 3416 3416 void *pvNew = RTMemRealloc(paCies, sizeof(paCies[0]) * (cCies + 8)); 3417 3417 if (pvNew) 3418 { 3418 3419 paCies = (PRTDWARFCIEINFO)pvNew; 3420 pCieHint = NULL; 3421 } 3419 3422 else 3420 3423 {
Note:
See TracChangeset
for help on using the changeset viewer.