summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/oid.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/oid.h b/src/oid.h
index 922a2a347..ca6c92cfd 100644
--- a/src/oid.h
+++ b/src/oid.h
@@ -22,14 +22,7 @@ char *git_oid_allocfmt(const git_oid *id);
GIT_INLINE(int) git_oid__hashcmp(const unsigned char *sha1, const unsigned char *sha2)
{
- int i;
-
- for (i = 0; i < GIT_OID_RAWSZ; i++, sha1++, sha2++) {
- if (*sha1 != *sha2)
- return *sha1 - *sha2;
- }
-
- return 0;
+ return memcmp(sha1, sha2, GIT_OID_RAWSZ);
}
/*