Further optimization allowed the fetch_objs call to be skipped if it isn't necessary. However, this leaves the connection in need of cleaning up to avoid getting an error message from the remote end when ssh is used. Fix this. Signed-off-by: Daniel Barkalow <barkalow@xxxxxxxxxxxx> --- builtin-fetch.c | 2 ++ transport.c | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/builtin-fetch.c b/builtin-fetch.c index 320e235..ac335f2 100644 --- a/builtin-fetch.c +++ b/builtin-fetch.c @@ -557,6 +557,8 @@ static int do_fetch(struct transport *transport, free_refs(fetch_map); + transport_disconnect(transport); + return 0; } diff --git a/transport.c b/transport.c index 53fb2ec..199e9e6 100644 --- a/transport.c +++ b/transport.c @@ -677,7 +677,15 @@ static int git_transport_push(struct transport *transport, int refspec_nr, const static int disconnect_git(struct transport *transport) { - free(transport->data); + struct git_transport_data *data = transport->data; + if (data->conn) { + packet_flush(data->fd[1]); + close(data->fd[0]); + close(data->fd[1]); + finish_connect(data->conn); + } + + free(data); return 0; } -- 1.5.4 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html