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
8a4a343a
Commit
8a4a343a
authored
9 years ago
by
Patrick Steinhardt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
blame_git: handle error returned by `git_commit_parent`
parent
b27ccad2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
src/blame_git.c
+2
-1
No files found.
src/blame_git.c
View file @
8a4a343a
...
@@ -525,7 +525,8 @@ static int pass_blame(git_blame *blame, git_blame__origin *origin, uint32_t opt)
...
@@ -525,7 +525,8 @@ static int pass_blame(git_blame *blame, git_blame__origin *origin, uint32_t opt)
if
(
sg_origin
[
i
])
if
(
sg_origin
[
i
])
continue
;
continue
;
git_commit_parent
(
&
p
,
origin
->
commit
,
i
);
if
((
error
=
git_commit_parent
(
&
p
,
origin
->
commit
,
i
))
<
0
)
goto
finish
;
porigin
=
find_origin
(
blame
,
p
,
origin
);
porigin
=
find_origin
(
blame
,
p
,
origin
);
if
(
!
porigin
)
if
(
!
porigin
)
...
...
This diff is collapsed.
Click to expand it.
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