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/torture | |
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/torture')
-rw-r--r-- | source3/torture/torture.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index f2446d1e34..8313cf141b 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -8135,7 +8135,7 @@ static bool run_local_gencache(int dummy) return False; } - if (!gencache_get("foo", NULL, &val, &tm)) { + if (!gencache_get("foo", talloc_tos(), &val, &tm)) { d_printf("%s: gencache_get() failed\n", __location__); return False; } @@ -8143,11 +8143,11 @@ static bool run_local_gencache(int dummy) if (strcmp(val, "bar") != 0) { d_printf("%s: gencache_get() returned %s, expected %s\n", __location__, val, "bar"); - SAFE_FREE(val); + TALLOC_FREE(val); return False; } - SAFE_FREE(val); + TALLOC_FREE(val); if (!gencache_del("foo")) { d_printf("%s: gencache_del() failed\n", __location__); @@ -8159,7 +8159,7 @@ static bool run_local_gencache(int dummy) return False; } - if (gencache_get("foo", NULL, &val, &tm)) { + if (gencache_get("foo", talloc_tos(), &val, &tm)) { d_printf("%s: gencache_get() on deleted entry " "succeeded\n", __location__); return False; @@ -8173,7 +8173,7 @@ static bool run_local_gencache(int dummy) return False; } - if (!gencache_get_data_blob("foo", NULL, &blob, NULL, NULL)) { + if (!gencache_get_data_blob("foo", talloc_tos(), &blob, NULL, NULL)) { d_printf("%s: gencache_get_data_blob() failed\n", __location__); return False; } @@ -8197,7 +8197,7 @@ static bool run_local_gencache(int dummy) return False; } - if (gencache_get_data_blob("foo", NULL, &blob, NULL, NULL)) { + if (gencache_get_data_blob("foo", talloc_tos(), &blob, NULL, NULL)) { d_printf("%s: gencache_get_data_blob() on deleted entry " "succeeded\n", __location__); return False; @@ -8212,7 +8212,7 @@ static bool run_local_gencache(int dummy) __location__); return false; } - if (gencache_get("blob", NULL, &val, &tm)) { + if (gencache_get("blob", talloc_tos(), &val, &tm)) { d_printf("%s: gencache_get succeeded\n", __location__); return false; } |