From dd3d6a160c54edbfbca708c2b17a61c7e39b3801 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 16 Mar 2011 21:29:02 +0100 Subject: s3: Fix Coverity ID 2144, DEADCODE We could never have assigned the real value in line 481. Andreas, please check! --- source3/winbindd/winbindd_samr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd_samr.c b/source3/winbindd/winbindd_samr.c index 40c0bb6bbb..0bcfc302e2 100644 --- a/source3/winbindd/winbindd_samr.c +++ b/source3/winbindd/winbindd_samr.c @@ -450,7 +450,7 @@ static NTSTATUS sam_lookup_groupmem(struct winbindd_domain *domain, } if (pnum_names) { - pnum_names = 0; + *pnum_names = 0; } tmp_ctx = talloc_stackframe(); -- cgit