From: Junio C Hamano Date: Thu, 24 Jul 2008 00:22:58 +0000 (-0700) Subject: ignore non-existent refs in dwim_log() X-Git-Tag: v1.6.0-rc1~49 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/0c4cd7f4a7aae5527560090aad7ef8dae85f1264?ds=inline;hp=--cc ignore non-existent refs in dwim_log() f2eba66 (Enable HEAD@{...} and make it independent from the current branch, 2007-02-03) introduced dwim_log() to handle @{...} syntax, and as part of its processing, it checks if the ref exists by calling refsolve_ref(). It should call it as a reader to make sure the call returns NULL for a nonexistent ref (not as a potential writer in which case it does not return NULL). Signed-off-by: Junio C Hamano --- 0c4cd7f4a7aae5527560090aad7ef8dae85f1264 diff --git a/sha1_name.c b/sha1_name.c index b0b2167578..4fb77f8863 100644 --- a/sha1_name.c +++ b/sha1_name.c @@ -273,7 +273,7 @@ int dwim_log(const char *str, int len, unsigned char *sha1, char **log) const char *ref, *it; strcpy(path, mkpath(*p, len, str)); - ref = resolve_ref(path, hash, 0, NULL); + ref = resolve_ref(path, hash, 1, NULL); if (!ref) continue; if (!stat(git_path("logs/%s", path), &st) &&