From 2821abee1f85c5d9a191a9880808b7022ac2e0b1 Mon Sep 17 00:00:00 2001 From: Anatoliy Atanasov Date: Thu, 24 Jun 2010 20:48:07 +0300 Subject: s4:auth/session.c - free "group_string" when not needed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matthias Dieter Wallnöfer --- source4/auth/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/auth/session.c b/source4/auth/session.c index 29ba13e536b..1be98742df0 100644 --- a/source4/auth/session.c +++ b/source4/auth/session.c @@ -178,7 +178,7 @@ _PUBLIC_ NTSTATUS auth_generate_session_info(TALLOC_CTX *mem_ctx, group_dn = talloc_asprintf(tmp_ctx, "", group_string); NT_STATUS_HAVE_NO_MEMORY_AND_FREE(group_dn, server_info); - + talloc_free(group_string); group_blob = data_blob_string_const(group_dn); /* This function takes in memberOf values and expands -- cgit