Skip to content

Commit 393bbb2

Browse files
bk2204gitster
authored andcommitted
object-name: make get_oid quietly return an error
A reasonable person looking at the signature and usage of get_oid and friends might conclude that in the event of an error, it always returns -1. However, this is not the case. Instead, get_oid_basic dies if we go too far back into the history of a reflog (or, when quiet, simply exits). This is not especially useful, since in many cases, we might want to handle this error differently. Let's add a flag here to make it just return -1 like elsewhere in these code paths. Note that we cannot make this behavior the default, since we have many other codepaths that rely on the existing behavior, including in tests. Signed-off-by: brian m. carlson <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6f84262 commit 393bbb2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

hash.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ struct object_id {
216216
#define GET_OID_REQUIRE_PATH 010000
217217
#define GET_OID_HASH_ANY 020000
218218
#define GET_OID_SKIP_AMBIGUITY_CHECK 040000
219+
#define GET_OID_GENTLY 0100000
219220

220221
#define GET_OID_DISAMBIGUATORS \
221222
(GET_OID_COMMIT | GET_OID_COMMITTISH | \

object-name.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,13 +1081,17 @@ static int get_oid_basic(struct repository *r, const char *str, int len,
10811081
* still fill in the oid with the "old" value,
10821082
* which we can use.
10831083
*/
1084-
} else {
1084+
} else if (!(flags & GET_OID_GENTLY)) {
10851085
if (flags & GET_OID_QUIETLY) {
10861086
exit(128);
10871087
}
10881088
die(_("log for '%.*s' only has %d entries"),
10891089
len, str, co_cnt);
10901090
}
1091+
if (flags & GET_OID_GENTLY) {
1092+
free(real_ref);
1093+
return -1;
1094+
}
10911095
}
10921096
}
10931097

0 commit comments

Comments
 (0)