diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-16 21:29:02 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-03-16 22:07:24 +0100 |
commit | dd3d6a160c54edbfbca708c2b17a61c7e39b3801 (patch) | |
tree | 73489766c96c3c363a706a48204958359ec18f9b /source3 | |
parent | 4f46ad96f2062bc628becf6dcc0780b69a583798 (diff) | |
download | samba-dd3d6a160c54edbfbca708c2b17a61c7e39b3801.tar.gz samba-dd3d6a160c54edbfbca708c2b17a61c7e39b3801.tar.bz2 samba-dd3d6a160c54edbfbca708c2b17a61c7e39b3801.zip |
s3: Fix Coverity ID 2144, DEADCODE
We could never have assigned the real value in line 481.
Andreas, please check!
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_samr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |