X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-ls-remote.c;h=06ab8da1fb1e5ebc5fedb82e74d7e6a7374cee0e;hb=77d3ecee85dbf354d2059d7ef65d788d90db3efa;hp=720280e3900dc65a5063306a55880b8bc1330c2a;hpb=ca2c19503cdd5a603024665bee8e9e8533431c9a;p=git.git diff --git a/builtin-ls-remote.c b/builtin-ls-remote.c index 720280e39..06ab8da1f 100644 --- a/builtin-ls-remote.c +++ b/builtin-ls-remote.c @@ -31,7 +31,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) { int i; const char *dest = NULL; - int nongit = 0; + int nongit; unsigned flags = 0; const char *uploadpack = NULL; const char **pattern = NULL; @@ -94,6 +94,8 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) transport_set_option(transport, TRANS_OPT_UPLOADPACK, uploadpack); ref = transport_get_remote_refs(transport); + if (transport_disconnect(transport)) + return 1; for ( ; ref; ref = ref->next) { if (!check_ref_type(ref, flags)) continue;