credentials: unable to connect to cache daemon
Error out if we just spawned the daemon and yet we cannot connect. And always release the string buffer. Signed-off-by: Clemens Buchacher <drizzd@aon.at> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
861444f6d7
commit
98c2924cfa
@ -71,11 +71,10 @@ static void do_cache(const char *socket, const char *action, int timeout,
|
|||||||
die_errno("unable to relay credential");
|
die_errno("unable to relay credential");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!send_request(socket, &buf))
|
if (send_request(socket, &buf) < 0 && (flags & FLAG_SPAWN)) {
|
||||||
return;
|
|
||||||
if (flags & FLAG_SPAWN) {
|
|
||||||
spawn_daemon(socket);
|
spawn_daemon(socket);
|
||||||
send_request(socket, &buf);
|
if (send_request(socket, &buf) < 0)
|
||||||
|
die_errno("unable to connect to cache daemon");
|
||||||
}
|
}
|
||||||
strbuf_release(&buf);
|
strbuf_release(&buf);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user