read_in_full: always report errors
commit56d7c27af1f8aa7519f165f6c022732e64db3716
authorJeff King <peff@peff.net>
Thu, 26 May 2011 16:30:27 +0000 (26 12:30 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 26 May 2011 20:54:18 +0000 (26 13:54 -0700)
tree9ca992989163a672ebc9eda61896f85e673b32bf
parent09ffc706e48f93ed622a9a61704b2f767666b30d
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>
wrapper.c