Changeset 46215 in vbox
- Timestamp:
- May 22, 2013 12:39:14 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmodcontainer.cpp
r46204 r46215 403 403 /* Be a little relaxed wrt to the symbol size. */ 404 404 int rc = VINF_SUCCESS; 405 if ( off + cb > pThis->paSegs[iSeg].cb)405 if (iSeg != RTDBGSEGIDX_ABS && off + cb > pThis->paSegs[iSeg].cb) 406 406 { 407 407 cb = pThis->paSegs[iSeg].cb - off;
Note:
See TracChangeset
for help on using the changeset viewer.