ReceivePack: Discard IndexPack as soon as possible

The IndexPack object carries a good bit of state within itself about
the objects received over the wire.  The earlier we can discard it,
the sooner the GC is able to reclaim this chunk of memory for other
uses.  So drop it as soon as we are certain the pack is valid and we
have no connectivity concerns.

Change-Id: I1e8bc87c2e9183733043622237a064e55957891f
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2010-04-16 08:16:23 -07:00
parent 7a91b180c1
commit 8279361de8
1 changed files with 1 additions and 0 deletions

View File

@ -656,6 +656,7 @@ private void service() throws IOException {
receivePack();
if (isCheckReceivedObjects())
checkConnectivity();
ip = null;
unpackError = null;
} catch (IOException err) {
unpackError = err;