The branch, master has been updated
via 24cfe3e6071f1304fd993ddaa2e7ad3337b5fad2 (commit)
from 664da577f931dfd47573d3d77a95afb573fba855 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 24cfe3e6071f1304fd993ddaa2e7ad3337b5fad2
Author: Volker Lendecke <[email protected]>
Date: Tue Apr 28 12:24:26 2009 +0200
Fix Coverity ID 853 (UNINIT) -- Kai, please check!
-----------------------------------------------------------------------
Summary of changes:
source4/winbind/wb_irpc.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source4/winbind/wb_irpc.c b/source4/winbind/wb_irpc.c
index 42f4e7c..801c2e7 100644
--- a/source4/winbind/wb_irpc.c
+++ b/source4/winbind/wb_irpc.c
@@ -132,6 +132,9 @@ static void wb_irpc_get_idmap_callback(struct
composite_context *ctx)
case WINBIND_IDMAP_LEVEL_XIDS_TO_SIDS:
status = wb_xids2sids_recv(ctx, &s->req->out.ids);
break;
+ default:
+ status = NT_STATUS_INTERNAL_ERROR;
+ break;
}
irpc_send_reply(s->msg, status);
--
Samba Shared Repository