diff options
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/user_util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/auth/user_util.c b/source3/auth/user_util.c index b52f1dd5bc..70ab5ade65 100644 --- a/source3/auth/user_util.c +++ b/source3/auth/user_util.c @@ -96,14 +96,13 @@ static bool fetch_map_from_gencache(TALLOC_CTX *ctx, if (key == NULL) { return false; } - found = gencache_get(key, NULL, &value, NULL); + found = gencache_get(key, ctx, &value, NULL); TALLOC_FREE(key); if (!found) { return false; } TALLOC_FREE(*p_user_out); - *p_user_out = talloc_strdup(ctx, value); - SAFE_FREE(value); + *p_user_out = value; if (!*p_user_out) { return false; } |