| 1500 | } |
| 1501 | |
| 1502 | int finish_connect(struct child_process *conn) |
| 1503 | { |
| 1504 | int code; |
| 1505 | if (!conn || git_connection_is_socket(conn)) |
| 1506 | return 0; |
| 1507 | |
| 1508 | code = finish_command(conn); |
| 1509 | free(conn); |
| 1510 | return code; |
| 1511 | } |
no test coverage detected