diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-25T23·06+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-25T23·06+0100 |
commit | 93ba78d6f4632ef1c5228965e3edc8c0faf88c1e (patch) | |
tree | 85730c182a9f5f492ade8e8ccdb1c2356f9900bd /third_party/git/diffcore-rename.c | |
parent | 6f8fbf4aa4b1654ab27d4829e114538761817de0 (diff) |
revert(3p/git): Revert merge of git upstream at v2.26.2 r/852
This causes cgit to serve error pages, which is undesirable. This reverts commit 5229c9b232de5bfa959ad6ebbb4c8192ac513352, reversing changes made to f2b211131f2347342dde63975b09cf603149f1a3.
Diffstat (limited to 'third_party/git/diffcore-rename.c')
-rw-r--r-- | third_party/git/diffcore-rename.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/third_party/git/diffcore-rename.c b/third_party/git/diffcore-rename.c index e189f407af3a..9624864858dc 100644 --- a/third_party/git/diffcore-rename.c +++ b/third_party/git/diffcore-rename.c @@ -263,8 +263,8 @@ static unsigned int hash_filespec(struct repository *r, if (!filespec->oid_valid) { if (diff_populate_filespec(r, filespec, 0)) return 0; - hash_object_file(r->hash_algo, filespec->data, filespec->size, - "blob", &filespec->oid); + hash_object_file(filespec->data, filespec->size, "blob", + &filespec->oid); } return oidhash(&filespec->oid); } @@ -274,17 +274,18 @@ static int find_identical_files(struct hashmap *srcs, struct diff_options *options) { int renames = 0; + struct diff_filespec *target = rename_dst[dst_index].two; struct file_similarity *p, *best = NULL; int i = 100, best_score = -1; - unsigned int hash = hash_filespec(options->repo, target); /* * Find the best source match for specified destination. */ - p = hashmap_get_entry_from_hash(srcs, hash, NULL, - struct file_similarity, entry); - hashmap_for_each_entry_from(srcs, p, entry) { + p = hashmap_get_from_hash(srcs, + hash_filespec(options->repo, target), + NULL); + for (; p; p = hashmap_get_next(srcs, p)) { int score; struct diff_filespec *source = p->filespec; @@ -328,8 +329,8 @@ static void insert_file_table(struct repository *r, entry->index = index; entry->filespec = filespec; - hashmap_entry_init(&entry->entry, hash_filespec(r, filespec)); - hashmap_add(table, &entry->entry); + hashmap_entry_init(entry, hash_filespec(r, filespec)); + hashmap_add(table, entry); } /* @@ -358,7 +359,7 @@ static int find_exact_renames(struct diff_options *options) renames += find_identical_files(&file_table, i, options); /* Free the hash data structure and entries */ - hashmap_free_entries(&file_table, struct file_similarity, entry); + hashmap_free(&file_table, 1); return renames; } @@ -584,7 +585,7 @@ void diffcore_rename(struct diff_options *options) stop_progress(&progress); /* cost matrix sorted by most to least similar pair */ - STABLE_QSORT(mx, dst_cnt * NUM_CANDIDATE_PER_DST, score_compare); + QSORT(mx, dst_cnt * NUM_CANDIDATE_PER_DST, score_compare); rename_count += find_renames(mx, dst_cnt, minimum_score, 0); if (detect_rename == DIFF_DETECT_COPY) |