diff options
author | June McEnroe <june@causal.agency> | 2021-04-12 21:18:42 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-13 11:57:33 -0500 |
commit | 12d91b897df65a2a50878edc62541c5b7f90003a (patch) | |
tree | f8be70da5e3c7d0642cdc43f87a9bbf3761a7d60 | |
parent | Use owner-filter for repo page headers (diff) | |
download | cgit-pink-12d91b897df65a2a50878edc62541c5b7f90003a.tar.gz cgit-pink-12d91b897df65a2a50878edc62541c5b7f90003a.zip |
Fix crash trying to print "this commit" on 404s
For example any URL that starts with a real repo name but isn't valid.
Diffstat (limited to '')
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 1858ea4..09c4c94 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -896,7 +896,7 @@ void cgit_add_clone_urls(void (*fn)(const char *)) static int print_this_commit_option(void) { struct object_id oid; - if (get_oid(ctx.qry.head, &oid)) + if (!ctx.qry.head || get_oid(ctx.qry.head, &oid)) return 1; html_option(oid_to_hex(&oid), "this commit", ctx.qry.head); return 0; |