diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-28 10:52:51 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-03-28 11:16:55 +0200 |
commit | 6e9b69fb0783188444d71fc3b3292cdc2efd6087 (patch) | |
tree | 607662106468840bf7713e9bcf97cf6a7f5df983 /source3/winbindd | |
parent | dc36d75d5fddaa351025e8eb8140f401b66aeb9d (diff) | |
download | samba-6e9b69fb0783188444d71fc3b3292cdc2efd6087.tar.gz samba-6e9b69fb0783188444d71fc3b3292cdc2efd6087.tar.bz2 samba-6e9b69fb0783188444d71fc3b3292cdc2efd6087.zip |
s3: Fix Coverity ID 2173: FORWARD_NULL
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c index cfd60aa42e..302df1e22d 100644 --- a/source3/winbindd/winbindd_cm.c +++ b/source3/winbindd/winbindd_cm.c @@ -1667,7 +1667,7 @@ void invalidate_cm_connection(struct winbindd_cm_conn *conn) if (conn->lsa_pipe_tcp != NULL) { if (is_valid_policy_hnd(&conn->lsa_policy)) { - dcerpc_lsa_Close(conn->lsa_pipe->binding_handle, + dcerpc_lsa_Close(conn->lsa_pipe_tcp->binding_handle, talloc_tos(), &conn->lsa_policy, &result); |