aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/acme
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/acme')
-rw-r--r--src/cmd/acme/exec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/acme/exec.c b/src/cmd/acme/exec.c
index 75737d80..1df01c71 100644
--- a/src/cmd/acme/exec.c
+++ b/src/cmd/acme/exec.c
@@ -651,6 +651,7 @@ checksha1(char *name, File *f, Dir *d)
buf = emalloc(8192);
while((n = read(fd, buf, 8192)) > 0)
sha1(buf, n, nil, h);
+ free(buf);
close(fd);
sha1(nil, 0, out, h);
if(memcmp(out, f->sha1, sizeof out) == 0) {