diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-05-30 10:30:40 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-02 09:36:06 +0900 |
commit | 9ef7223058a44990dc4650ecb1209c97ceb636b3 (patch) | |
tree | e3aa8240bac2be6a2bf5ad158023ec31a67d3457 /notes.h | |
parent | 490bc83a01acfefa11e98f8852b1f4a9dd962331 (diff) | |
download | git-9ef7223058a44990dc4650ecb1209c97ceb636b3.tar.gz |
notes: make get_note return pointer to struct object_id
Make get_note return a pointer to a const struct object_id. Add a
defensive check to ensure we don't accidentally dereference a NULL
pointer.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes.h')
-rw-r--r-- | notes.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,7 @@ int remove_note(struct notes_tree *t, const unsigned char *object_sha1); * * Return NULL if the given object has no notes. */ -const unsigned char *get_note(struct notes_tree *t, +const struct object_id *get_note(struct notes_tree *t, const unsigned char *object_sha1); /* |