Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
remote: release strbuf after use in read_remote_branches()
[gitweb.git]
/
builtin
/
hash-object.c
diff --git
a/builtin/hash-object.c
b/builtin/hash-object.c
index 8a58ce085a80d2c9aa38763d97112589f50fa237..c532ff9320c751d1db5475add51f2c3c6a8c7146 100644
(file)
--- a/
builtin/hash-object.c
+++ b/
builtin/hash-object.c
@@
-24,7
+24,7
@@
static int hash_literally(struct object_id *oid, int fd, const char *type, unsig
if (strbuf_read(&buf, fd, 4096) < 0)
ret = -1;
else
- ret = hash_sha1_file_literally(buf.buf, buf.len, type, oid
->hash
, flags);
+ ret = hash_sha1_file_literally(buf.buf, buf.len, type, oid, flags);
strbuf_release(&buf);
return ret;
}