Unverified Commit 2b722da4 by Colin Stolley Committed by GitHub

Update src/refdb_fs.c

Co-authored-by: Edward Thomson <ethomson@github.com>
parent 0df53fd6
......@@ -605,9 +605,8 @@ cmp_record_to_refname(const char *rec, size_t data_end, const char *ref_name)
data_end -= GIT_OID_HEXSZ + 1;
end = memchr(rec, '\n', data_end);
if (end) {
if (end)
data_end = end - rec;
}
cmp_val = memcmp(rec, ref_name, min(ref_len, data_end));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment