From 077a34e0b9401f9bcea991d850f1111a70e7d3d1 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 4 May 2017 15:56:54 +0200 Subject: pack-redundant: plug memory leak Identified via Coverity. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano diff --git a/builtin/pack-redundant.c b/builtin/pack-redundant.c index 72c8158..cb1df1c 100644 --- a/builtin/pack-redundant.c +++ b/builtin/pack-redundant.c @@ -442,6 +442,7 @@ static void minimize(struct pack_list **min) /* return if there are no objects missing from the unique set */ if (missing->size == 0) { *min = unique; + free(missing); return; } -- cgit v0.10.2-6-g49f6