From d9c1d1f709ba49e57762456e529e283825a4fd7a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 12 Apr 2011 10:48:03 +0200 Subject: s3: Fix Coverity ID 2471: UNINIT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner Autobuild-User: Günther Deschner Autobuild-Date: Thu Apr 14 16:22:58 CEST 2011 on sn-devel-104 --- source3/passdb/pdb_ipa.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source3/passdb/pdb_ipa.c b/source3/passdb/pdb_ipa.c index 6faadec3f3..5f89be7a29 100644 --- a/source3/passdb/pdb_ipa.c +++ b/source3/passdb/pdb_ipa.c @@ -1006,7 +1006,6 @@ static NTSTATUS ipasam_add_ipa_group_objectclasses(struct ldapsam_privates *ldap uint32_t has_objectclass) { LDAPMod **mods = NULL; - NTSTATUS status; int ret; if (!(has_objectclass & HAS_GROUPOFNAMES)) { @@ -1050,7 +1049,7 @@ static NTSTATUS ipasam_add_ipa_group_objectclasses(struct ldapsam_privates *ldap if (ret != LDAP_SUCCESS) { DEBUG(1, ("failed to modify/add group %s (dn = %s)\n", name, dn)); - return status; + return NT_STATUS_LDAP(ret); } return NT_STATUS_OK; -- cgit