Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
3f3d21ba
Commit
3f3d21ba
authored
Jun 11, 2014
by
Vicent Marti
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2417 from libgit2/cmn/revwalk-array-fix
revwalk: more sensible array handling
parents
7064cdaf
f9a97667
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/revwalk.c
+2
-2
No files found.
src/revwalk.c
View file @
3f3d21ba
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment