mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 20:42:23 +00:00
revwalk: more sensible array handling
Instead of using a sentinel empty value to detect the last commit, let's check for when we get a NULL from popping the stack, which lets us know when we're done. The current code causes us to read uninitialized data, although only on RHEL/CentOS 6 in release mode. This is a readability win overall.
This commit is contained in:
parent
7064cdafbd
commit
f9a9766794
@ -48,7 +48,7 @@ static int mark_uninteresting(git_revwalk *walk, git_commit_list_node *commit)
|
||||
|
||||
assert(commit);
|
||||
|
||||
git_array_alloc(pending);
|
||||
git_array_init_to_size(pending, 2);
|
||||
GITERR_CHECK_ARRAY(pending);
|
||||
|
||||
do {
|
||||
@ -67,7 +67,7 @@ static int mark_uninteresting(git_revwalk *walk, git_commit_list_node *commit)
|
||||
tmp = git_array_pop(pending);
|
||||
commit = tmp ? *tmp : NULL;
|
||||
|
||||
} while (git_array_size(pending) > 0);
|
||||
} while (commit != NULL);
|
||||
|
||||
git_array_clear(pending);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user