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
2f28219c
Commit
2f28219c
authored
May 01, 2013
by
Russell Belfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clarify where error message is set
parent
52c52737
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/status.c
+2
-2
No files found.
src/status.c
View file @
2f28219c
...
...
@@ -141,7 +141,7 @@ int git_status_foreach_ext(
/* if there is no HEAD, that's okay - we'll make an empty iterator */
if
(((
err
=
git_repository_head_tree
(
&
head
,
repo
))
<
0
)
&&
!
(
err
==
GIT_ENOTFOUND
||
err
==
GIT_EORPHANEDHEAD
))
return
err
;
return
err
;
memcpy
(
&
diffopt
.
pathspec
,
&
opts
->
pathspec
,
sizeof
(
diffopt
.
pathspec
));
...
...
@@ -238,7 +238,7 @@ static int get_one_status(const char *path, unsigned int status, void *data)
p_fnmatch
(
sfi
->
expected
,
path
,
sfi
->
fnm_flags
)
!=
0
))
{
sfi
->
ambiguous
=
true
;
return
GIT_EAMBIGUOUS
;
return
GIT_EAMBIGUOUS
;
/* giterr_set will be done by caller */
}
return
0
;
...
...
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