diff options
author | Jeff King <peff@peff.net> | 2011-05-26 12:28:44 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-26 11:25:13 -0700 |
commit | b1905aeac5aded421cd90f8d264e27bb39672b36 (patch) | |
tree | e26b89dbe13296cf2dcf7e2b3cfd8af9203df510 /setup.c | |
parent | 5dd564895e84eacfc728183fb5a9215665ff59a3 (diff) | |
download | git-b1905aeac5aded421cd90f8d264e27bb39672b36.tar.gz |
read_gitfile_gently: use ssize_t to hold read result
Otherwise, a negative error return becomes a very large read
value. We catch this in practice because we compare the
expected and actual numbers of bytes (and you are not likely
to be reading (size_t)-1 bytes), but this makes the
correctness a little more obvious.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -272,7 +272,7 @@ const char *read_gitfile_gently(const char *path) const char *slash; struct stat st; int fd; - size_t len; + ssize_t len; if (stat(path, &st)) return NULL; |