Merge branch 'js/maint-1.6.6-send-pack-stateless-rpc-deadlock-fix' into js/maint-send-pack-stateless-rpc-deadlock-fix
* js/maint-1.6.6-send-pack-stateless-rpc-deadlock-fix: send-pack: unbreak push over stateless rpc
This commit is contained in:
commit
80b5b69855
@ -98,7 +98,6 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext
|
||||
free(buf);
|
||||
close(po.out);
|
||||
po.out = -1;
|
||||
close(fd);
|
||||
}
|
||||
|
||||
if (finish_command(&po))
|
||||
@ -340,6 +339,8 @@ int send_pack(struct send_pack_args *args,
|
||||
if (pack_objects(out, remote_refs, extra_have, args) < 0) {
|
||||
for (ref = remote_refs; ref; ref = ref->next)
|
||||
ref->status = REF_STATUS_NONE;
|
||||
if (args->stateless_rpc)
|
||||
close(out);
|
||||
if (use_sideband)
|
||||
finish_async(&demux);
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user