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
1f54d5bb
Commit
1f54d5bb
authored
Nov 17, 2023
by
Peter Pettersson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util: suppress some uninitialized variable warnings
parent
51f0b021
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/util/net.c
+1
-1
src/util/regexp.c
+1
-1
No files found.
src/util/net.c
View file @
1f54d5bb
...
...
@@ -657,7 +657,7 @@ static bool has_at(const char *str)
int
git_net_url_parse_scp
(
git_net_url
*
url
,
const
char
*
given
)
{
const
char
*
default_port
=
default_port_for_scheme
(
"ssh"
);
const
char
*
c
,
*
user
,
*
host
,
*
port
,
*
path
=
NULL
;
const
char
*
c
,
*
user
,
*
host
,
*
port
=
NULL
,
*
path
=
NULL
;
size_t
user_len
=
0
,
host_len
=
0
,
port_len
=
0
;
unsigned
short
bracket
=
0
;
...
...
src/util/regexp.c
View file @
1f54d5bb
...
...
@@ -125,7 +125,7 @@ int git_regexp_search(const git_regexp *r, const char *string, size_t nmatches,
if
((
data
=
pcre2_match_data_create
(
nmatches
,
NULL
))
==
NULL
)
{
git_error_set_oom
();
goto
out
;
return
-
1
;
}
if
((
error
=
pcre2_match
(
*
r
,
(
const
unsigned
char
*
)
string
,
strlen
(
string
),
...
...
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