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
a166466c
Commit
a166466c
authored
Jun 09, 2015
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3198 from libgit2/cmn/coverity
A few fixes from Coverity
parents
82a7a24c
02980bdc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
10 deletions
+11
-10
src/indexer.c
+1
-1
src/odb_pack.c
+1
-1
src/rebase.c
+1
-1
src/remote.c
+3
-2
src/transports/ssh.c
+5
-5
No files found.
src/indexer.c
View file @
a166466c
...
...
@@ -822,7 +822,7 @@ static int resolve_deltas(git_indexer *idx, git_transfer_progress *stats)
progressed
=
0
;
non_null
=
0
;
git_vector_foreach
(
&
idx
->
deltas
,
i
,
delta
)
{
git_rawobj
obj
;
git_rawobj
obj
=
{
NULL
}
;
if
(
!
delta
)
continue
;
...
...
src/odb_pack.c
View file @
a166466c
...
...
@@ -383,7 +383,7 @@ static int pack_backend__read_internal(
git_odb_backend
*
backend
,
const
git_oid
*
oid
)
{
struct
git_pack_entry
e
;
git_rawobj
raw
;
git_rawobj
raw
=
{
NULL
}
;
int
error
;
if
((
error
=
pack_entry_find
(
&
e
,
(
struct
pack_backend
*
)
backend
,
oid
))
<
0
||
...
...
src/rebase.c
View file @
a166466c
...
...
@@ -512,7 +512,7 @@ static int rebase_ensure_not_dirty(
git_tree
*
head
=
NULL
;
git_index
*
index
=
NULL
;
git_diff
*
diff
=
NULL
;
int
error
;
int
error
=
0
;
if
(
check_index
)
{
if
((
error
=
git_repository_head_tree
(
&
head
,
repo
))
<
0
||
...
...
src/remote.c
View file @
a166466c
...
...
@@ -869,7 +869,7 @@ int git_remote_download(git_remote *remote, const git_strarray *refspecs, const
{
int
error
=
-
1
;
size_t
i
;
git_vector
refs
,
specs
,
*
to_active
;
git_vector
*
to_active
,
specs
=
GIT_VECTOR_INIT
,
refs
=
GIT_VECTOR_INIT
;
const
git_remote_callbacks
*
cbs
=
NULL
;
assert
(
remote
);
...
...
@@ -2451,7 +2451,8 @@ char *apply_insteadof(git_config *config, const char *url, int direction)
suffix_length
=
strlen
(
SUFFIX_PUSH
)
+
1
;
}
git_config_iterator_glob_new
(
&
iter
,
config
,
regexp
);
if
(
git_config_iterator_glob_new
(
&
iter
,
config
,
regexp
)
<
0
)
return
NULL
;
match_length
=
0
;
while
(
git_config_next
(
&
entry
,
iter
)
==
0
)
{
...
...
src/transports/ssh.c
View file @
a166466c
...
...
@@ -177,11 +177,12 @@ static int ssh_stream_write(
static
void
ssh_stream_free
(
git_smart_subtransport_stream
*
stream
)
{
ssh_stream
*
s
=
(
ssh_stream
*
)
stream
;
ssh_subtransport
*
t
=
OWNING_SUBTRANSPORT
(
s
);
int
ret
;
ssh_subtransport
*
t
;
GIT_UNUSED
(
ret
);
if
(
!
stream
)
return
;
t
=
OWNING_SUBTRANSPORT
(
s
);
t
->
current_stream
=
NULL
;
if
(
s
->
channel
)
{
...
...
@@ -621,8 +622,7 @@ static int _git_ssh_setup_conn(
done:
if
(
error
<
0
)
{
if
(
*
stream
)
ssh_stream_free
(
*
stream
);
ssh_stream_free
(
*
stream
);
if
(
session
)
libssh2_session_free
(
session
);
...
...
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