upload-pack.c: make send_client_data() return void

The send_client_data() function uses write_or_die() for writing data
which immediately terminates the process on errors. If no such error
occurred, send_client_data() always returned the value that was passed
as third parameter prior to this commit. This value is already known to
the caller in any case, so let's turn send_client_data() into a void
function instead.

Signed-off-by: Lukas Fleischer <lfleischer@lfos.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Lukas Fleischer 2016-06-14 16:49:17 +02:00 committed by Junio C Hamano
parent 4c4b7d1d3b
commit fcf0fe9e69

View File

@ -58,11 +58,11 @@ static void reset_timeout(void)
alarm(timeout); alarm(timeout);
} }
static ssize_t send_client_data(int fd, const char *data, ssize_t sz) static void send_client_data(int fd, const char *data, ssize_t sz)
{ {
if (use_sideband) { if (use_sideband) {
send_sideband(1, fd, data, sz, use_sideband); send_sideband(1, fd, data, sz, use_sideband);
return sz; return;
} }
if (fd == 3) if (fd == 3)
/* emergency quit */ /* emergency quit */
@ -70,10 +70,9 @@ static ssize_t send_client_data(int fd, const char *data, ssize_t sz)
if (fd == 2) { if (fd == 2) {
/* XXX: are we happy to lose stuff here? */ /* XXX: are we happy to lose stuff here? */
xwrite(fd, data, sz); xwrite(fd, data, sz);
return sz; return;
} }
write_or_die(fd, data, sz); write_or_die(fd, data, sz);
return sz;
} }
static int write_one_shallow(const struct commit_graft *graft, void *cb_data) static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
@ -231,9 +230,7 @@ static void create_pack_file(void)
} }
else else
buffered = -1; buffered = -1;
sz = send_client_data(1, data, sz); send_client_data(1, data, sz);
if (sz < 0)
goto fail;
} }
/* /*
@ -260,9 +257,7 @@ static void create_pack_file(void)
/* flush the data */ /* flush the data */
if (0 <= buffered) { if (0 <= buffered) {
data[0] = buffered; data[0] = buffered;
sz = send_client_data(1, data, 1); send_client_data(1, data, 1);
if (sz < 0)
goto fail;
fprintf(stderr, "flushed.\n"); fprintf(stderr, "flushed.\n");
} }
if (use_sideband) if (use_sideband)