diff options
author | Martin Pool <mbp@samba.org> | 2001-12-20 04:01:44 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-12-20 04:01:44 +0000 |
commit | cc0846f967f268764bff280f64d5cb47b716d796 (patch) | |
tree | d277e685bd3b8da1ecc6128176728eb3b41cafa3 /source3/lib | |
parent | 6c7e9dfb293f1243d9d8d8a2ac50ef12d738198e (diff) | |
download | samba-cc0846f967f268764bff280f64d5cb47b716d796.tar.gz samba-cc0846f967f268764bff280f64d5cb47b716d796.tar.bz2 samba-cc0846f967f268764bff280f64d5cb47b716d796.zip |
Add --enable-dmalloc to link against the dmalloc malloc debugger.
It's not as strong as Insure, but it's free, reasonably efficient and
works on every platform.
(This used to be commit e76d27fcdb33df5212ca5b0ce53c77ed8ca58906)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/talloc.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c index 7d7ec86cc2..8496170daf 100644 --- a/source3/lib/talloc.c +++ b/source3/lib/talloc.c @@ -45,7 +45,13 @@ * memory it contains all in one allocation, which might be a bit * faster and perhaps use less memory overhead. * - * That smells like a premature optimization, though. -- mbp */ + * That smells like a premature optimization, though. -- mbp + **/ + +/** + * If you want testing for memory corruption, link with dmalloc or use + * Insure++. It doesn't seem useful to duplicate them here. + **/ #include "includes.h" |