From d17f102339c8542cfb5e81ab6a705b1b64651f51 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 17 Aug 2015 22:32:43 +0800 Subject: [PATCH] try to fix HTTP ops not GC --- routers/repo/http.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routers/repo/http.go b/routers/repo/http.go index abf6134f23..4d86f39260 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -292,6 +292,7 @@ func serviceReceivePack(hr handler) { func serviceRpc(rpc string, hr handler) { w, r, dir := hr.w, hr.r, hr.Dir + defer r.Body.Close() if !hasAccess(r, hr.Config, dir, rpc, true) { renderNoAccess(w)