1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Fix Coverity ID 853 (UNINIT) -- Kai, please check!

This commit is contained in:
Volker Lendecke 2009-04-28 12:24:26 +02:00
parent 664da577f9
commit 24cfe3e607

View File

@ -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);