mirror of
https://github.com/git/git.git
synced 2024-11-28 12:34:08 +08:00
Merge branch 'jk/read-in-full-stops-on-error'
* jk/read-in-full-stops-on-error: read_in_full: always report errors
This commit is contained in:
commit
27c6729201
@ -148,8 +148,10 @@ ssize_t read_in_full(int fd, void *buf, size_t count)
|
||||
|
||||
while (count > 0) {
|
||||
ssize_t loaded = xread(fd, p, count);
|
||||
if (loaded <= 0)
|
||||
return total ? total : loaded;
|
||||
if (loaded < 0)
|
||||
return -1;
|
||||
if (loaded == 0)
|
||||
return total;
|
||||
count -= loaded;
|
||||
p += loaded;
|
||||
total += loaded;
|
||||
|
Loading…
Reference in New Issue
Block a user