From 3f5955d361da5278773b46dccb34c8f63eb04157 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 13 Apr 2008 01:42:46 +0200 Subject: [PATCH] registry cachehook: fix memleak (to talloc_tos()): free key at the end. Michael --- source/registry/reg_cachehook.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/registry/reg_cachehook.c b/source/registry/reg_cachehook.c index bb190411eed..705d08abf88 100644 --- a/source/registry/reg_cachehook.c +++ b/source/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; } /********************************************************************** -- 2.47.3