From 0fa8845fa0aa8df0480a85560dabe7b1b7d7926b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 13 Apr 2008 01:42:46 +0200 Subject: registry cachehook: fix memleak (to talloc_tos()): free key at the end. Michael (This used to be commit 3f5955d361da5278773b46dccb34c8f63eb04157) --- source3/registry/reg_cachehook.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/registry/reg_cachehook.c') diff --git a/source3/registry/reg_cachehook.c b/source3/registry/reg_cachehook.c index bb190411ee..705d08abf8 100644 --- a/source3/registry/reg_cachehook.c +++ b/source3/registry/reg_cachehook.c @@ -69,6 +69,7 @@ bool reghook_cache_init( void ) bool reghook_cache_add(const char *keyname, REGISTRY_OPS *ops) { + bool ret; char *key = NULL; key = keyname_to_path(talloc_tos(), keyname); @@ -80,7 +81,9 @@ bool reghook_cache_add(const char *keyname, REGISTRY_OPS *ops) DEBUG(10, ("reghook_cache_add: Adding ops %p for key [%s]\n", (void *)ops, key)); - return pathtree_add(cache_tree, key, ops); + ret = pathtree_add(cache_tree, key, ops); + TALLOC_FREE(key); + return ret; } /********************************************************************** -- cgit