From d926201434b0eb12dada75be133e7972327325dd Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Thu, 6 Oct 2011 09:58:48 -0700 Subject: [PATCH] cephx: don't leak Authorizers on each request It's not clear to me why this is a class member -- it's only written to or read from in this function, which allocates a fresh one each time it's called. Signed-off-by: Greg Farnum --- src/auth/cephx/CephxClientHandler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth/cephx/CephxClientHandler.cc b/src/auth/cephx/CephxClientHandler.cc index 5ec090a415b..64722e58700 100644 --- a/src/auth/cephx/CephxClientHandler.cc +++ b/src/auth/cephx/CephxClientHandler.cc @@ -81,6 +81,7 @@ int CephxClientHandler::build_request(bufferlist& bl) if (!authorizer) return -EINVAL; bl.claim_append(authorizer->bl); + delete authorizer; CephXServiceTicketRequest req; req.keys = need;