Jump to content

Dmalloc

From Wikipedia, the free encyclopedia

This is the current revision of this page, as edited by E090 (talk | contribs) at 16:52, 23 December 2020 (Moved to github). The present address (URL) is a permanent link to this version.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Dmalloc is a C memory debugger library written by Gray Watson to assist programmers in finding a variety of dynamic memory allocation mistakes. It replaces parts (such as malloc) of the C standard library provided by the operating system or compiler with its own versions, which produce information intended to help the programmer detect problematic code.

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

See also

[edit]
[edit]