Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
3k views

Valgrind vs Purify

Which one is better on Linux? Valgrind or Purify What is your opinion of using them?
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 ...
3
votes
2answers
142 views

Does Valgrind have an API like Purify/Quantify that lets you disable data recording?

Something like this Purify/Quantify function: quantify_stop_recording_data() Thanks!
3
votes
0answers
442 views

How to integrate Purify into Hudson CI?

I have a Hudson CI system set up and for the moment it is used for building a project and running some unit tests. My next step is to integrate the memory leak detector Purify into the build cycle. ...
2
votes
3answers
2k views

Is my anti XSS method OK for allowing user HTML in PHP?

I am working on finding a good way to make user submitted data, in this case allow HTML and have it be as safe and fast as I can. I know EVERY SINGLE PERSON on this site seems to think ...
1
vote
1answer
182 views

Purify's Uninit Memory Read (UMR) on class/structure padding

I experience quite annoying side-effect of class/structure padding with Purify. E.g. struct something { int field1; char field2; }; /* ... */ struct something smth, smth2; smth.field1 = 1; ...
1
vote
1answer
513 views

How can I know if an executable was incrementally linked or not?

I'm trying to use Purify 6 to analyze a memory corruption in one of our executables built with VC++ 2003 (7.1). When I instrument the binary with the command: purify /Replace=yes /Run=no myprog.exe ...
0
votes
0answers
58 views

How to purify html5 with php? [closed]

Possible Duplicate: HTML filter that is HTML5 compliant I've been searching for days now and cannot find the answer to it. Is there any purifier written in PHP for html5? To clarify - by ...
0
votes
1answer
170 views

Is there a known issue with throwing exceptions in g++ with Purify causing SIGABRT?

Actually, my real question is: is there anything wrong with the indicated line in the following code ("Causes SIGABRT"): char* myFunc(char *param) { char* leaked = new char[80]; // Intentionally ...
0
votes
1answer
356 views

How to avoid the following purify detected memory leak in C++?

I am getting the following memory leak.Its being probably caused by std::string. how can i avoid it? PLK: 23 bytes potentially leaked at 0xeb68278 * Suppressed in ...
0
votes
1answer
140 views

Handling COR dump issue with purify

I an instrumenting a C++application using IBM purify and I get the issue COR dump and my program aborts although when run from terminal it runs fine. Can anyone tell me what is this COR dump and how ...
0
votes
5answers
1k views

Rational Purify failng to jump to memory leaks

So my company uses a delightfully buggy program called Rational Purify (as a plugin to Microsoft Visual Developer Studio) to manage memory leaks. The program is deigned to let you click on a memory ...