Top "Bounds-checker" questions

A software developer tool used to detect the inappropriate usage of memory regions.

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: (source: beholdgenealogy.…

delphi error-handling bounds-checker
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 …

c++ mfc bounds-checker purify
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 …

c++ visual-studio-2008 bounds-checker
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, …

debugging memory-leaks profiling bounds-checker
GCC STL bound checking

How do I enable bound checking for operator[] and iterators?

c++ gcc stl bounds-checker