summaryrefslogtreecommitdiff
path: root/rerere.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-05-26 16:30:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-05-26 20:54:18 (GMT)
commit56d7c27af1f8aa7519f165f6c022732e64db3716 (patch)
tree9ca992989163a672ebc9eda61896f85e673b32bf /rerere.c
parent09ffc706e48f93ed622a9a61704b2f767666b30d (diff)
downloadgit-56d7c27af1f8aa7519f165f6c022732e64db3716.zip
git-56d7c27af1f8aa7519f165f6c022732e64db3716.tar.gz
git-56d7c27af1f8aa7519f165f6c022732e64db3716.tar.bz2
read_in_full: always report errors
The read_in_full function repeatedly calls read() to fill a buffer. If the first read() returns an error, we notify the caller by returning the error. However, if we read some data and then get an error on a subsequent read, we simply return the amount of data that we did read, and the caller is unaware of the error. This makes the tradeoff that seeing the partial data is more important than the fact that an error occurred. In practice, this is generally not the case; we care more if an error occurred, and should throw away any partial data. I audited the current callers. In most cases, this will make no difference at all, as they do: if (read_in_full(fd, buf, size) != size) error("short read"); However, it will help in a few cases: 1. In sha1_file.c:index_stream, we would fail to notice errors in the incoming stream. 2. When reading symbolic refs in resolve_ref, we would fail to notice errors and potentially use a truncated ref name. 3. In various places, we will get much better error messages. For example, callers of safe_read would erroneously print "the remote end hung up unexpectedly" instead of showing the read error. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rerere.c')
0 files changed, 0 insertions, 0 deletions