[PATCH v4 15/25] pack-redundant: plug memory leak
From: Johannes Schindelin <hidden>
Date: 2017-05-04 13:59:51
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Johannes Schindelin <hidden>
Date: 2017-05-04 13:59:51
Subsystem:
the rest · Maintainer:
Linus Torvalds
Identified via Coverity. Signed-off-by: Johannes Schindelin <redacted> --- builtin/pack-redundant.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/builtin/pack-redundant.c b/builtin/pack-redundant.c
index 72c815844dd..cb1df1c7614 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; }
--
2.12.2.windows.2.800.gede8f145e06