From: René Scharfe Date: Sun, 2 Jun 2013 15:46:57 +0000 (+0200) Subject: unpack-trees: free cache_entry array members for merges X-Git-Tag: v1.8.4-rc0~195^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/5d80ef5a6e727bbecd7d892a5043bae25f7ca5e2?ds=inline;hp=5d80ef5a6e727bbecd7d892a5043bae25f7ca5e2 unpack-trees: free cache_entry array members for merges The merge functions duplicate entries as needed and they don't free them. Release them in unpack_nondirectories, the same function where they were allocated, after we're done. As suggested by Felipe, use the same loop style (zero-based for loop) for freeing as for allocating. Improved-by: Felipe Contreras Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano ---