mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-09 15:00:04 +00:00
Fix delta compare to use correct pathname
The delta cmp function needs to choose the correct path for ordering when a delta is ADDED, RENAMED, or COPIED.
This commit is contained in:
parent
aadfa85b0a
commit
0293450e21
15
src/diff.c
15
src/diff.c
@ -231,10 +231,23 @@ static char *diff_strdup_prefix(git_pool *pool, const char *prefix)
|
||||
return git_pool_strndup(pool, prefix, len + 1);
|
||||
}
|
||||
|
||||
GIT_INLINE(const char *) diff_delta__path(const git_diff_delta *delta)
|
||||
{
|
||||
const char *str = delta->old_file.path;
|
||||
|
||||
if (!str ||
|
||||
delta->status == GIT_DELTA_ADDED ||
|
||||
delta->status == GIT_DELTA_RENAMED ||
|
||||
delta->status == GIT_DELTA_COPIED)
|
||||
str = delta->new_file.path;
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
int git_diff_delta__cmp(const void *a, const void *b)
|
||||
{
|
||||
const git_diff_delta *da = a, *db = b;
|
||||
int val = strcmp(da->old_file.path, db->old_file.path);
|
||||
int val = strcmp(diff_delta__path(da), diff_delta__path(db));
|
||||
return val ? val : ((int)da->status - (int)db->status);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user