summaryrefslogtreecommitdiff
path: root/refs.h
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2016-09-05 20:08:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-07 19:59:43 (GMT)
commit8f6dc7e32eee2944d1490ff9bf12ec329f3b33c2 (patch)
tree6d04aad2e1144fdd97b1c394b88e2bfcd5158e45 /refs.h
parent151b2911c1279f3ea4b5bcc069a04348aeb9d811 (diff)
downloadgit-8f6dc7e32eee2944d1490ff9bf12ec329f3b33c2.zip
git-8f6dc7e32eee2944d1490ff9bf12ec329f3b33c2.tar.gz
git-8f6dc7e32eee2944d1490ff9bf12ec329f3b33c2.tar.bz2
refs: add an update_ref_oid function.
Several places around the codebase want to pass update_ref data from struct object_id, but update_ref may also be passed NULL pointers. Instead of checking and dereferencing in every caller, create an update_ref_oid which wraps update_ref and provides this functionality. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r--refs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/refs.h b/refs.h
index 1b02043..7a77f3e 100644
--- a/refs.h
+++ b/refs.h
@@ -477,6 +477,9 @@ void ref_transaction_free(struct ref_transaction *transaction);
int update_ref(const char *msg, const char *refname,
const unsigned char *new_sha1, const unsigned char *old_sha1,
unsigned int flags, enum action_on_err onerr);
+int update_ref_oid(const char *msg, const char *refname,
+ const struct object_id *new_oid, const struct object_id *old_oid,
+ unsigned int flags, enum action_on_err onerr);
int parse_hide_refs_config(const char *var, const char *value, const char *);