diff options
author | Martin Pool <mbp@samba.org> | 2002-01-14 06:51:34 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-14 06:51:34 +0000 |
commit | 3353223b4766b0cc87bd1b4ed7f67bc52b2a7da3 (patch) | |
tree | 79022c1af3fdc31e9d90180d74c455d9e4605691 | |
parent | 6059f407637327b01ce008dd09634e4a3bbf8f1b (diff) | |
download | samba-3353223b4766b0cc87bd1b4ed7f67bc52b2a7da3.tar.gz samba-3353223b4766b0cc87bd1b4ed7f67bc52b2a7da3.tar.bz2 samba-3353223b4766b0cc87bd1b4ed7f67bc52b2a7da3.zip |
FIXME We should turn the global list off when using Insure++,
otherwise all the memory will be seen as still reachable.
(This used to be commit 682e7cd394c1e1cc9a83f7e8e5e3694e083946c4)
-rw-r--r-- | source3/lib/talloc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c index bd9080dc34..7b6e987bc0 100644 --- a/source3/lib/talloc.c +++ b/source3/lib/talloc.c @@ -78,6 +78,9 @@ struct talloc_ctx { /** * Start of linked list of all talloc pools. + * + * @fixme We should turn the global list off when using Insure++, + * otherwise all the memory will be seen as still reachable. **/ TALLOC_CTX *list_head = NULL; |