1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Fix an uninitialized variable

(This used to be commit 8b2d9ee8c5)
This commit is contained in:
Volker Lendecke 2008-04-07 12:19:25 +02:00
parent b6e9fffaa2
commit 4f715d1102

View File

@ -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')) {