diff options
author | Volker Lendecke <vl@samba.org> | 2010-09-24 18:45:52 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-10-08 21:11:45 +0200 |
commit | b5ed09c3afe2c9122db6eec6dd994588d7d6a2c1 (patch) | |
tree | 1830e4cfa1e00d8bb876b921bd36c616c62d8d28 /lib | |
parent | 584ac76a4f959ee8fa491407e3039a34bc5c627a (diff) | |
download | samba-b5ed09c3afe2c9122db6eec6dd994588d7d6a2c1.tar.gz samba-b5ed09c3afe2c9122db6eec6dd994588d7d6a2c1.tar.bz2 samba-b5ed09c3afe2c9122db6eec6dd994588d7d6a2c1.zip |
Move talloc_enable_null_tracking() to the s3 daemons
Diffstat (limited to 'lib')
-rw-r--r-- | lib/talloc/talloc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/talloc/talloc.c b/lib/talloc/talloc.c index cafe4d6e7a..84947a77b0 100644 --- a/lib/talloc/talloc.c +++ b/lib/talloc/talloc.c @@ -1013,13 +1013,6 @@ _PUBLIC_ void *talloc_init(const char *fmt, ...) void *ptr; const char *name; - /* - * samba3 expects talloc_report_depth_cb(NULL, ...) - * reports all talloc'ed memory, so we need to enable - * null_tracking - */ - talloc_enable_null_tracking(); - ptr = __talloc(NULL, 0); if (unlikely(ptr == NULL)) return NULL; |