Tagged Questions
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 ...
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 ...
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 ...
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 ...