diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-04-02 06:57:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:03 -0500 |
commit | fd2e5b90a42c86736416adf1d5e06315605476ff (patch) | |
tree | 0ae06fe526d1954b357021324fec656c2ea290af /source3/lib/util_pw.c | |
parent | ddf759c533f8869c319c726ee1773f969c54a487 (diff) | |
download | samba-fd2e5b90a42c86736416adf1d5e06315605476ff.tar.gz |
r22024: Don't leak, actually use the provided memory context...
(This used to be commit 46ff4e599e79f47254e05c7e4db75db9a19934bc)
Diffstat (limited to 'source3/lib/util_pw.c')
-rw-r--r-- | source3/lib/util_pw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_pw.c b/source3/lib/util_pw.c index fcbdd941fea..d6dfbd50169 100644 --- a/source3/lib/util_pw.c +++ b/source3/lib/util_pw.c @@ -106,7 +106,7 @@ struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name) pwnam_cache[i] = tcopy_passwd(pwnam_cache, temp); - return tcopy_passwd(pwnam_cache, temp); + return tcopy_passwd(mem_ctx, temp); } struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) |