From 8b2d9ee8c54ed84f83fdecf04e656dd66b622abb Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 7 Apr 2008 12:19:25 +0200 Subject: [PATCH] Fix an uninitialized variable --- source/nsswitch/wbinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nsswitch/wbinfo.c b/source/nsswitch/wbinfo.c index 80a72903438..ba358bd1dd7 100644 --- a/source/nsswitch/wbinfo.c +++ b/source/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')) { -- 2.47.3