From 4f715d110279098bb62cb3f5b0831f1a8868068a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 7 Apr 2008 12:19:25 +0200 Subject: Fix an uninitialized variable (This used to be commit 8b2d9ee8c54ed84f83fdecf04e656dd66b622abb) --- source3/nsswitch/wbinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/nsswitch') diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 80a7290343..ba358bd1dd 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -811,7 +811,7 @@ static bool wbinfo_lookuprids(const char *domain, const char *arg) uint32 *rids = NULL; const char *p; char *ridstr; - TALLOC_CTX *mem_ctx; + TALLOC_CTX *mem_ctx = NULL; bool ret = false; if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) { -- cgit