diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-27 08:41:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:21 -0500 |
commit | aa12305945df5f1578250b56ae2f3653b051736f (patch) | |
tree | 30e072fca46873f0d59d736d65b96096326eec2a /source4/rpc_server/samr/samdb.c | |
parent | 3aa3428bc93e6c8741b52eaa65d43f3a5abcee2e (diff) | |
download | samba-aa12305945df5f1578250b56ae2f3653b051736f.tar.gz samba-aa12305945df5f1578250b56ae2f3653b051736f.tar.bz2 samba-aa12305945df5f1578250b56ae2f3653b051736f.zip |
r2680: switched the libcli/raw/ code over to use talloc_reference(), which simplifies things quite a bit
(This used to be commit c82a9cf750829c4f6982ca3133295c8599023c4e)
Diffstat (limited to 'source4/rpc_server/samr/samdb.c')
-rw-r--r-- | source4/rpc_server/samr/samdb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/rpc_server/samr/samdb.c b/source4/rpc_server/samr/samdb.c index 33c4eec86a..4160ef78fc 100644 --- a/source4/rpc_server/samr/samdb.c +++ b/source4/rpc_server/samr/samdb.c @@ -68,8 +68,7 @@ void *samdb_connect(TALLOC_CTX *mem_ctx) second open due to the broken nature of unix locking. */ if (ctx != NULL) { - talloc_increase_ref_count(ctx); - return ctx; + return talloc_reference(mem_ctx, ctx); } ctx = talloc_p(mem_ctx, struct samdb_context); |