3
votes
2answers
95 views
Visual C++ debugger and BoundsChecker mystery
Hi everyone,
Look at this screenshot of a Visual C++ debugger session:
The execution point is now inside a virtual function. "mDb" is a reference to an object which is the member of that class. …
4
votes
4answers
338 views
How to make std::vector’s operator[] compile doing bounds checking in DEBUG but not in RELEASE
I'm using Visual Studio 2008.
I'm aware that std::vector has bounds checking with the at() function and has undefined behaviour if you try to access something using the operator [] incorrectly (out …
2
votes
5answers
431 views
How can I find the location of a “List index out of bounds” error in Delphi
In Delphi 2009, my program now produces a "List index out of bounds" error. It generates a popup box:
I'm using the "Debug" Build Configuration that has all the Runtime error checking turned on. …
2
votes
3answers
338 views
Good memory profiling, leak and error detection for Windows
I'm currently looking for a good memory / leak detection tool for Windows. A few years ago, I used Numega's Boundschecker, which was VERY good. Right now it seems to have been
sold to Compuware, which …
2
votes
4answers
71 views
Technical name for a region of memory with a fixed pattern for bounds checking?
I want to know if there is some technical name for those regions of extra memory that are allocated for debugging purposes and filled with special patterns, so they can be checked at runtime to see if …
7
votes
5answers
1k views
64 bit tools like BoundsChecker & Purify
For many years I have used two great tools BoundsChecker & Purify, but the developers of these applications have let me down, they no longer put effort into maintaining them or developing them. We …
1
vote
1answer
314 views
Can you start and stop boundschecker (DevPartner)?
I'm trying to use boundschecker to analyze a rather complex program. Running the program with boundschecker is almost too slow for it to be of any use since it takes me almost a day to run the …
2
votes
1answer
236 views
GDI resource leak in DrawFrameControl
It seems that DrawFrameControl() creates Font and Brush objects, select them into dc, and doesn't delete them. (according to BoundsChecker messages). Does anyone faced such thing?
