]> git.ipfire.org Git - thirdparty/git.git/commitdiff
object-name: make get_oid quietly return an error
authorbrian m. carlson <sandals@crustytoothpaste.net>
Thu, 12 Jun 2025 01:12:17 +0000 (01:12 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 12 Jun 2025 20:32:17 +0000 (13:32 -0700)
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 <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
hash.h
object-name.c

diff --git a/hash.h b/hash.h
index d6422ddf454c17d62286b8fb8ba047b4808b4234..ec594c63a60efdf134144a5ae41714e0aa95075e 100644 (file)
--- a/hash.h
+++ b/hash.h
@@ -216,6 +216,7 @@ struct object_id {
 #define GET_OID_REQUIRE_PATH         010000
 #define GET_OID_HASH_ANY             020000
 #define GET_OID_SKIP_AMBIGUITY_CHECK 040000
+#define GET_OID_GENTLY              0100000
 
 #define GET_OID_DISAMBIGUATORS \
        (GET_OID_COMMIT | GET_OID_COMMITTISH | \
index 2c751a5352a75dcf72c137dd07185c2cc67d454c..313810334329b2c76443ddb2baefce5976366667 100644 (file)
@@ -1081,13 +1081,17 @@ static int get_oid_basic(struct repository *r, const char *str, int len,
                                 * still fill in the oid with the "old" value,
                                 * which we can use.
                                 */
-                       } else {
+                       } else if (!(flags & GET_OID_GENTLY)) {
                                if (flags & GET_OID_QUIETLY) {
                                        exit(128);
                                }
                                die(_("log for '%.*s' only has %d entries"),
                                    len, str, co_cnt);
                        }
+                       if (flags & GET_OID_GENTLY) {
+                               free(real_ref);
+                               return -1;
+                       }
                }
        }