From 2bd980585458be49ff924fd2544a337a34f596bb Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 26 May 2003 16:38:48 +0000 Subject: Correctly initialize winbind auth method. (This used to be commit 55cdb6b87850b483939a5d3edcd5be80be6f7493) --- source3/auth/auth_winbind.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index 76b5c34183..79395a99c9 100644 --- a/source3/auth/auth_winbind.c +++ b/source3/auth/auth_winbind.c @@ -132,6 +132,9 @@ static NTSTATUS check_winbind_security(const struct auth_context *auth_context, /* module initialisation */ NTSTATUS auth_init_winbind(struct auth_context *auth_context, const char *param, auth_methods **auth_method) { + if (!make_auth_methods(auth_context, auth_method)) { + return NT_STATUS_NO_MEMORY; + } (*auth_method)->name = "winbind"; (*auth_method)->auth = check_winbind_security; -- cgit