diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-02 12:55:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:10 -0500 |
commit | f4b349127bdfe233476fe2efba961912f39a5cbd (patch) | |
tree | 8b612fc9b60c9e253964c0d539e071dd7e0afe28 /source4/lib/registry | |
parent | 09a76e204cf339862f8b0b45979d65cc34aa3c36 (diff) | |
download | samba-f4b349127bdfe233476fe2efba961912f39a5cbd.tar.gz samba-f4b349127bdfe233476fe2efba961912f39a5cbd.tar.bz2 samba-f4b349127bdfe233476fe2efba961912f39a5cbd.zip |
r4479: added the function talloc_autofree_context() which returns a talloc context that
will automatically be freed on program exit. This is useful for reducing
clutter in leak reports
(This used to be commit cf73dda652e0a121901f22771104be6751c0fcb9)
Diffstat (limited to 'source4/lib/registry')
-rw-r--r-- | source4/lib/registry/common/reg_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/common/reg_interface.c b/source4/lib/registry/common/reg_interface.c index 9b03a69f3f..442b34bc13 100644 --- a/source4/lib/registry/common/reg_interface.c +++ b/source4/lib/registry/common/reg_interface.c @@ -44,7 +44,7 @@ NTSTATUS registry_register(const void *_hive_ops) return NT_STATUS_OBJECT_NAME_COLLISION; } - entry = talloc_p(NULL, struct reg_init_function_entry); + entry = talloc_p(talloc_autofree_context(), struct reg_init_function_entry); entry->hive_functions = hive_ops; DLIST_ADD(backends, entry); |