Jump to content

Dmalloc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
SmackBot (talk | contribs)
Standard headings &/or gen fixes.
Pfoggia (talk | contribs)
Updated Dmalloc web page link
Line 7: Line 7:


==External links==
==External links==
*[http://dmalloc.com/ Dmalloc web site]
*[http://sourceforge.net/projects/dmalloc/ Dmalloc web site]


[[Category:Memory management software]]
[[Category:Memory management software]]

Revision as of 10:30, 19 February 2009

Dmalloc is a memory debugger C library, written by Gray Watson, that helps programmers to find a variety of memory allocation programming errors for dynamic memory. It replaces parts of standard programming library provided by the operating system for malloc and other software with its own versions which help the programmer detect buffer overflows and other critical programming issues.

Dmalloc can find memory leaks, off-by-one errors, usage of invalid addresses in some library functions calls.

See also