From 4e79ca61611cf17c522827b36e6113001de36c54 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 7 Feb 2009 11:09:45 +0100 Subject: Fix coverity ID 876 (FORWARD_NULL) Michael, please check! --- source3/winbindd/winbindd_user.c | 1 + 1 file changed, 1 insertion(+) 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 */ -- cgit