diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-08-15 15:08:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-15 15:08:25 -0700 |
commit | 7d020f5a78a1ae7ff47d65a2adc79171c0cf9cb7 (patch) | |
tree | 5196c1aa277fe6619a24b9f5607f062f20f68b2e /refs/files-backend.c | |
parent | Merge branch 'sg/coccicheck-updates' (diff) | |
parent | strbuf_humanise: use unsigned variables (diff) | |
download | tgif-7d020f5a78a1ae7ff47d65a2adc79171c0cf9cb7.tar.xz |
Merge branch 'jk/size-t'
Code clean-up to use size_t/ssize_t when they are the right type.
* jk/size-t:
strbuf_humanise: use unsigned variables
pass st.st_size as hint for strbuf_readlink()
strbuf_readlink: use ssize_t
strbuf: use size_t for length in intermediate variables
reencode_string: use size_t for string lengths
reencode_string: use st_add/st_mult helpers
Diffstat (limited to 'refs/files-backend.c')
-rw-r--r-- | refs/files-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/refs/files-backend.c b/refs/files-backend.c index b9eb3aabe6..1f1a98e4cb 100644 --- a/refs/files-backend.c +++ b/refs/files-backend.c @@ -363,7 +363,7 @@ stat_ref: /* Follow "normalized" - ie "refs/.." symlinks by hand */ if (S_ISLNK(st.st_mode)) { strbuf_reset(&sb_contents); - if (strbuf_readlink(&sb_contents, path, 0) < 0) { + if (strbuf_readlink(&sb_contents, path, st.st_size) < 0) { if (errno == ENOENT || errno == EINVAL) /* inconsistent with lstat; retry */ goto stat_ref; |