From: Volker Lendecke Date: Tue, 3 Aug 2021 07:09:28 +0000 (+0200) Subject: rpc_client: Fix a small memleak X-Git-Tag: ldb-2.5.0~872 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e3cc4eae9ab779a61496061da34fc4289785769;p=thirdparty%2Fsamba.git rpc_client: Fix a small memleak Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 66c24e0dbd8..6f22cff0d66 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -1266,6 +1266,8 @@ static NTSTATUS create_rpc_bind_req(TALLOC_CTX *mem_ctx, &auth_info, auth->client_hdr_signing, rpc_out); + data_blob_free(&auth_info); + return ret; }