diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-07 11:09:45 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-07 11:10:10 +0100 |
commit | 4e79ca61611cf17c522827b36e6113001de36c54 (patch) | |
tree | b3be50c83d42629d610e07a70f3bb3c657d72da9 /source3 | |
parent | 3d6860018f018e8ad4a8ed1ea8a2cc8f9c639254 (diff) | |
download | samba-4e79ca61611cf17c522827b36e6113001de36c54.tar.gz samba-4e79ca61611cf17c522827b36e6113001de36c54.tar.bz2 samba-4e79ca61611cf17c522827b36e6113001de36c54.zip |
Fix coverity ID 876 (FORWARD_NULL)
Michael, please check!
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_user.c b/source3/winbindd/winbindd_user.c index 62fd4d7f07..28c1c01cf6 100644 --- a/source3/winbindd/winbindd_user.c +++ b/source3/winbindd/winbindd_user.c @@ -85,6 +85,7 @@ static bool winbindd_fill_pwent(TALLOC_CTX *ctx, char *dom_name, char *user_name DEBUG(5,("winbindd_fill_pwent: Failed to find domain for %s. " "Disabling name alias support\n", dom_name)); nt_status = NT_STATUS_NO_SUCH_DOMAIN; + return false; } /* Resolve the uid number */ |