diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-09-26 15:41:22 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-09-26 15:41:22 +0200 |
commit | 169ff6efea9b0ea9795effc428de0bd578644a2e (patch) | |
tree | b66f4b97ade6321c5c1835d40cf5c4f6cf4aff15 /source4 | |
parent | 6b595a93c1eb380ef6120dbbcc0c6e6bb7092deb (diff) | |
download | samba-169ff6efea9b0ea9795effc428de0bd578644a2e.tar.gz samba-169ff6efea9b0ea9795effc428de0bd578644a2e.tar.bz2 samba-169ff6efea9b0ea9795effc428de0bd578644a2e.zip |
registry: Fix warning freeing talloc pointer with multiple parents.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/registry/regf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/regf.c b/source4/lib/registry/regf.c index 6d4ea1b688..c5a74c7911 100644 --- a/source4/lib/registry/regf.c +++ b/source4/lib/registry/regf.c @@ -2144,7 +2144,7 @@ WERROR reg_open_regf_file(TALLOC_CTX *parent_ctx, const char *location, regf->header->data_offset); /* We can drop our own reference now that *key will have created one */ - talloc_free(regf); + talloc_unlink(parent_ctx, regf); return WERR_OK; } |