Detecting use after free() on windows. (dangling pointers)
Posted
by The Rook
on Stack Overflow
See other posts from Stack Overflow
or by The Rook
Published on 2010-03-12T21:27:57Z
Indexed on
2010/03/12
22:57 UTC
Read the original article
Hit count: 210
I'm trying to detect "Use after free()" bugs, otherwise known as "Dangling pointers". I know Valgrind can be used to detect "Use after free" bugs on the *nix platform, but what about windows? What if I don't have the source? Is there a better program than Valgrind for detecting all dangling pointers in a program? A free and open source would be preferred , but I'll use a commercial solution if it will get the job done.
© Stack Overflow or respective owner