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
0ddc0776
Commit
0ddc0776
authored
Aug 02, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v1.7_backports' into maint/v1.7
parents
3e2baa6d
ec2439bf
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
include/git2/sys/transport.h
+1
-0
src/libgit2/repository.c
+2
-0
src/libgit2/streams/stransport.c
+2
-2
src/libgit2/transports/ssh.c
+3
-2
No files found.
include/git2/sys/transport.h
View file @
0ddc0776
...
...
@@ -9,6 +9,7 @@
#define INCLUDE_sys_git_transport_h
#include "git2/net.h"
#include "git2/oidarray.h"
#include "git2/proxy.h"
#include "git2/remote.h"
#include "git2/strarray.h"
...
...
src/libgit2/repository.c
View file @
0ddc0776
...
...
@@ -153,7 +153,9 @@ int git_repository__cleanup(git_repository *repo)
git_cache_clear
(
&
repo
->
objects
);
git_attr_cache_flush
(
repo
);
git_grafts_free
(
repo
->
grafts
);
repo
->
grafts
=
NULL
;
git_grafts_free
(
repo
->
shallow_grafts
);
repo
->
shallow_grafts
=
NULL
;
set_config
(
repo
,
NULL
);
set_index
(
repo
,
NULL
);
...
...
src/libgit2/streams/stransport.c
View file @
0ddc0776
...
...
@@ -162,7 +162,7 @@ static OSStatus write_cb(SSLConnectionRef conn, const void *data, size_t *len)
if
(
ret
<
0
)
{
st
->
error
=
ret
;
return
(
ret
==
GIT_TIMEOUT
)
?
errSSLNetworkTimeout
:
-
9853
/* errSSLNetworkTimeout */
:
-
36
/* ioErr */
;
}
...
...
@@ -214,7 +214,7 @@ static OSStatus read_cb(SSLConnectionRef conn, void *data, size_t *len)
if
(
ret
<
0
)
{
st
->
error
=
ret
;
error
=
(
ret
==
GIT_TIMEOUT
)
?
errSSLNetworkTimeout
:
-
9853
/* errSSLNetworkTimeout */
:
-
36
/* ioErr */
;
break
;
}
else
if
(
ret
==
0
)
{
...
...
src/libgit2/transports/ssh.c
View file @
0ddc0776
...
...
@@ -877,11 +877,12 @@ static int _git_ssh_setup_conn(
t
->
current_stream
=
s
;
done:
if
(
known_hosts
)
libssh2_knownhost_free
(
known_hosts
);
if
(
error
<
0
)
{
ssh_stream_free
(
*
stream
);
if
(
known_hosts
)
libssh2_knownhost_free
(
known_hosts
);
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