summaryrefslogtreecommitdiff
path: root/source3/lib/netapi
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-09-16 03:58:13 -0700
committerAndrew Tridgell <tridge@samba.org>2009-09-16 03:58:13 -0700
commit7860817737158e5daa7596304dd9e35cb65ddcee (patch)
tree71c3c397aeea6b48541e16152be2ca6309c9dc99 /source3/lib/netapi
parentf391e64a82b8e6bf5862175d3ebd71ff8d4b08e8 (diff)
parentc405d721c1a84bd2bdab2d56dd89e232cabe7955 (diff)
downloadsamba-7860817737158e5daa7596304dd9e35cb65ddcee.tar.gz
samba-7860817737158e5daa7596304dd9e35cb65ddcee.tar.bz2
samba-7860817737158e5daa7596304dd9e35cb65ddcee.zip
Merge branch 'master' of /home/tridge/samba/git/combined
Diffstat (limited to 'source3/lib/netapi')
-rw-r--r--source3/lib/netapi/user.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/netapi/user.c b/source3/lib/netapi/user.c
index 9fa3ddd9a8..f95750fae7 100644
--- a/source3/lib/netapi/user.c
+++ b/source3/lib/netapi/user.c
@@ -466,7 +466,7 @@ WERROR NetUserAdd_r(struct libnetapi_ctx *ctx,
&user_handle);
done:
- if (is_valid_policy_hnd(&user_handle)) {
+ if (is_valid_policy_hnd(&user_handle) && pipe_cli) {
rpccli_samr_Close(pipe_cli, ctx, &user_handle);
}
@@ -1696,7 +1696,7 @@ WERROR NetUserGetInfo_r(struct libnetapi_ctx *ctx,
}
done:
- if (is_valid_policy_hnd(&user_handle)) {
+ if (is_valid_policy_hnd(&user_handle) && pipe_cli) {
rpccli_samr_Close(pipe_cli, ctx, &user_handle);
}
@@ -1864,7 +1864,7 @@ WERROR NetUserSetInfo_r(struct libnetapi_ctx *ctx,
werr = WERR_OK;
done:
- if (is_valid_policy_hnd(&user_handle)) {
+ if (is_valid_policy_hnd(&user_handle) && pipe_cli) {
rpccli_samr_Close(pipe_cli, ctx, &user_handle);
}