diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-07-10 11:27:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-10 11:27:52 -0700 |
commit | b41a4636eea8961e88f107818a68513f847b6fd3 (patch) | |
tree | c4d41dd1e67a14698313e7cb1337a7c4568c10e9 /sha1_file.c | |
parent | e7cdec622afeae0869140e72a1c45392e672465e (diff) | |
parent | 80b47854ca84abec991f6fff42dbeb6626588b87 (diff) | |
download | git-b41a4636eea8961e88f107818a68513f847b6fd3.tar.gz |
Merge branch 'rs/fix-alt-odb-path-comparison'
* rs/fix-alt-odb-path-comparison:
sha1_file: avoid overrunning alternate object base string
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index 34d527f670..a38854ce55 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -315,7 +315,8 @@ static int link_alt_odb_entry(const char *entry, const char *relative_base, int * thing twice, or object directory itself. */ for (alt = alt_odb_list; alt; alt = alt->next) { - if (!memcmp(ent->base, alt->base, pfxlen)) { + if (pfxlen == alt->name - alt->base - 1 && + !memcmp(ent->base, alt->base, pfxlen)) { free(ent); return -1; } |