Changes between Version 2 and Version 3 of DevelopersFAQ
- Timestamp:
- Aug 5, 2007, 7:18:07 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopersFAQ
v2 v3 56 56 You can also use the Watcom debugger. It can give you a call trace too. 57 57 58 59 === Can a hardware breakpoint be used to detect a spurious write? === 60 61 You can if the exception address shown in the popuplog P2 field is consistent. 62 63 === If all the traps are in the library code, what does this possibly mean? === 64 65 This is not unusual for buffer overflows. Each buffer in the heap has a 66 header and depending on the implementation a trailer which contains counts 67 and/or pointers. If you wipe out one of these, a trap will follow soon 68 enough. 69 58 70 ----