Tagged Questions
A software developer tool used to detect the inappropriate usage of memory regions.
10
votes
9answers
6k 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 ...
6
votes
2answers
283 views
5
votes
8answers
1k views
How do virtual destructors work?
Few hours back I was fiddling with a Memory Leak issue and it turned out that I really got some basic stuff about virtual destructors wrong! Let me put explain my class design.
class Base
{
virtual ...
5
votes
5answers
2k 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 ...
5
votes
5answers
3k 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 ...
4
votes
2answers
252 views
Will any programs detect a buffer overflow within a C/C++ structure?
Consider the following program:
struct abc
{
int x[5];
int y[5];
};
int main()
{
struct abc test;
test.y[0] = 10;
printf("%d", test.x[5]);
}
(borrowed from
Is it legal to ...
4
votes
3answers
200 views
Bounds checking for Variable Length Arrays (VLA)?
Is there a way to check for buffer overflows in VLA's ? I used -fstack-protector-all -Wstack-protector but get these warnings:
warning: not protecting local variables: variable length buffer
Is ...
4
votes
5answers
4k 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. ...
3
votes
2answers
547 views
Visual C++ debugger and BoundsChecker mystery
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. "mDb" has the ...
2
votes
1answer
340 views
Can array bounds checking be disabled in Visual Basic 2008
I know that this was an advanced compiler option in previous versions of Visual Studio, is there a way to disable array bounds checking in Visual Studio 2008? There's no option for it that I can see.
2
votes
4answers
92 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 ...
2
votes
1answer
465 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?
1
vote
2answers
251 views
BoundsChecker shows incorrect memory leak message
I'm using BoundsChecker9.1 with visual c++. I have a class
class Sample{
public:
vector<AnotherClass> x;
};
When I run my program the BoundsChecker tool reports all push_back() calls such as ...
1
vote
3answers
1k 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 ...
0
votes
2answers
217 views
WPF 3D :check if a cube can completely contain another cube
I am working on drop & drop in 3D. I have created 3D spaces (rooms) with walls (cubes) which act as place holders for objects (assume a smaller cubes) being dropped.
How do I go about figuring ...
0
votes
1answer
410 views
DevPartner BoundsChecker breaks my program
I am working on a program which I suspect to have one or more memory leaks. Some other answer on Stack Overflow told me to try DevPartner BoundsChecker (one of many others I tried).
Now when I run my ...
0
votes
1answer
142 views
Unable to detect Memory issue using BoundsChecker
recently we observed that our application server memory is increasing with some client API, in the end it leads to crash.
so we tried using boundschecker and it shows NO memory leak and leads to ...