From 7bce558fec4b50aaaf61894602955488603988cd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 4 Oct 2006 16:33:42 +0000 Subject: r19066: Fix a memleak (This used to be commit c53e2e54750764c9a0eb57a86fd226b4f8711a66) --- source3/nsswitch/winbindd_util.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/nsswitch/winbindd_util.c') diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index 4d99b0fbe6..f26ec9232b 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -350,6 +350,7 @@ enum winbindd_result init_child_connection(struct winbindd_domain *domain, if ((request == NULL) || (response == NULL) || (state == NULL)) { DEBUG(0, ("talloc failed\n")); + TALLOC_FREE(mem_ctx); continuation(private_data, False); return WINBINDD_ERROR; } -- cgit