Browse Source

Merge branch 'jk/receive-pack-deadlocks-with-early-failure' into maint

* jk/receive-pack-deadlocks-with-early-failure:
  receive-pack: close sideband fd on early pack errors
maint
Junio C Hamano 12 years ago
parent
commit
bd8e3385d5
  1. 5
      builtin/receive-pack.c

5
builtin/receive-pack.c

@ -828,8 +828,11 @@ static const char *unpack(int err_fd) @@ -828,8 +828,11 @@ static const char *unpack(int err_fd)
: 0);

hdr_err = parse_pack_header(&hdr);
if (hdr_err)
if (hdr_err) {
if (err_fd > 0)
close(err_fd);
return hdr_err;
}
snprintf(hdr_arg, sizeof(hdr_arg),
"--pack_header=%"PRIu32",%"PRIu32,
ntohl(hdr.hdr_version), ntohl(hdr.hdr_entries));

Loading…
Cancel
Save