From 635a85d4b880284d271e0dd10f9ef9e014016100 Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Sat, 22 Jun 2013 09:01:40 -0600 Subject: [PATCH] Marked one spot where newly allocated Store::get*() entries are forgotten and probably leaking. --- src/client_side_reply.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index 2bf9a17437..e56d5e9f90 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -872,7 +872,7 @@ clientReplyContext::purgeFoundObject(StoreEntry *entry) ErrorState *err = clientBuildError(ERR_ACCESS_DENIED, Http::scForbidden, NULL, http->getConn()->clientConnection->remote, http->request); startError(err); - return; + return; // XXX: leaking unused entry is some store does not keep it } StoreIOBuffer localTempBuffer; -- 2.47.2