Skip to content

Commit

Permalink
Merge branch 'jl/pack-transfer-avoid-double-close'
Browse files Browse the repository at this point in the history
The codepath that send_pack() calls pack_objects() mistakenly
closed the same file descriptor twice, leading to potentially
closing a wrong file descriptor that was opened in the meantime.

* jl/pack-transfer-avoid-double-close:
  Clear fd after closing to avoid double-close error
  • Loading branch information
Junio C Hamano committed Oct 30, 2013
2 parents 02882bc + 37cb1dd commit 832ee79
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fetch-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,10 @@ static int get_pack(struct fetch_pack_args *args,
close(cmd.out);
}

if (!use_sideband)
/* Closed by start_command() */
xd[0] = -1;

ret = finish_command(&cmd);
if (!ret || (args->check_self_contained_and_connected && ret == 1))
args->self_contained_and_connected =
Expand Down
4 changes: 4 additions & 0 deletions send-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,12 @@ int send_pack(struct send_pack_args *args,
shutdown(fd[0], SHUT_WR);
if (use_sideband)
finish_async(&demux);
fd[1] = -1;
return -1;
}
if (!args->stateless_rpc)
/* Closed by pack_objects() via start_command() */
fd[1] = -1;
}
if (args->stateless_rpc && cmds_sent)
packet_flush(out);
Expand Down

0 comments on commit 832ee79

Please sign in to comment.