From: Clemens Buchacher Date: Sat, 7 Jan 2012 11:54:36 +0000 (+0100) Subject: credentials: unable to connect to cache daemon X-Git-Tag: v1.7.9-rc1~9^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=98c2924cfa84a7f30b17636bd5632e53a0fa002e;p=git.git 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 Acked-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/credential-cache.c b/credential-cache.c index dc98372e5..b15a9a744 100644 --- a/credential-cache.c +++ b/credential-cache.c @@ -71,11 +71,10 @@ static void do_cache(const char *socket, const char *action, int timeout, die_errno("unable to relay credential"); } - if (!send_request(socket, &buf)) - return; - if (flags & FLAG_SPAWN) { + if (send_request(socket, &buf) < 0 && (flags & FLAG_SPAWN)) { spawn_daemon(socket); - send_request(socket, &buf); + if (send_request(socket, &buf) < 0) + die_errno("unable to connect to cache daemon"); } strbuf_release(&buf); }