Free compressed buffer after write_sha1_file() is done.

This does not matter for commands that write just a handful SHA1 files,
but is noticeable in git-convert-cache which essentially traverses the
entire object database.

Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Junio C Hamano 2005-05-07 01:27:00 -07:00
parent 651df67bbc
commit 383f85b72a
1 changed files with 1 additions and 0 deletions

View File

@ -425,6 +425,7 @@ int write_sha1_file(char *buf, unsigned long len, const char *type, unsigned cha
die("unable to write file"); die("unable to write file");
fchmod(fd, 0444); fchmod(fd, 0444);
close(fd); close(fd);
free(compressed);


ret = link(tmpfile, filename); ret = link(tmpfile, filename);
if (ret < 0) { if (ret < 0) {