diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-04 08:57:59 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-09-05 20:09:21 +0200 |
commit | d3c689fc5c80431b7e72150f72465b3d255a6f02 (patch) | |
tree | 5345e29db38968ef5692e1c8d2435b2d6a3fe45a /source3/passdb | |
parent | 32037e0533f720ebbd3f49c5951c4ef30aac9985 (diff) | |
download | samba-d3c689fc5c80431b7e72150f72465b3d255a6f02.tar.gz samba-d3c689fc5c80431b7e72150f72465b3d255a6f02.tar.bz2 samba-d3c689fc5c80431b7e72150f72465b3d255a6f02.zip |
lib: Use "mem_ctx" arg in gencache_get
Signed-off-by: Volker Lendecke <vl@samba.org>
Signed-off-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Thu Sep 5 20:09:21 CEST 2013 on sn-devel-104
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/account_pol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/account_pol.c b/source3/passdb/account_pol.c index 14ff946b51..06925e8af6 100644 --- a/source3/passdb/account_pol.c +++ b/source3/passdb/account_pol.c @@ -446,7 +446,7 @@ bool cache_account_policy_get(enum pdb_policy_type type, uint32_t *value) goto done; } - if (gencache_get(cache_key, NULL, &cache_value, NULL)) { + if (gencache_get(cache_key, talloc_tos(), &cache_value, NULL)) { uint32 tmp = strtoul(cache_value, NULL, 10); *value = tmp; ret = True; @@ -454,7 +454,7 @@ bool cache_account_policy_get(enum pdb_policy_type type, uint32_t *value) done: SAFE_FREE(cache_key); - SAFE_FREE(cache_value); + TALLOC_FREE(cache_value); return ret; } |