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
b11eb08f
Commit
b11eb08f
authored
May 21, 2019
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config parse: safely cast to int
parent
6b349ecc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
src/config_parse.c
+6
-1
No files found.
src/config_parse.c
View file @
b11eb08f
...
@@ -88,6 +88,11 @@ static int parse_subsection_header(git_config_parser *reader, const char *line,
...
@@ -88,6 +88,11 @@ static int parse_subsection_header(git_config_parser *reader, const char *line,
last_quote
=
strrchr
(
line
,
'"'
);
last_quote
=
strrchr
(
line
,
'"'
);
quoted_len
=
last_quote
-
first_quote
;
quoted_len
=
last_quote
-
first_quote
;
if
((
last_quote
-
line
)
>
INT_MAX
)
{
set_parse_error
(
reader
,
0
,
"invalid section header, line too long"
);
goto
end_error
;
}
if
(
quoted_len
==
0
)
{
if
(
quoted_len
==
0
)
{
set_parse_error
(
reader
,
0
,
"missing closing quotation mark in section header"
);
set_parse_error
(
reader
,
0
,
"missing closing quotation mark in section header"
);
goto
end_error
;
goto
end_error
;
...
@@ -146,7 +151,7 @@ end_parse:
...
@@ -146,7 +151,7 @@ end_parse:
}
}
*
section_name
=
git_buf_detach
(
&
buf
);
*
section_name
=
git_buf_detach
(
&
buf
);
return
&
line
[
rpos
+
2
]
-
line_start
;
/* rpos is at the closing quote */
return
(
int
)(
&
line
[
rpos
+
2
]
-
line_start
)
;
/* rpos is at the closing quote */
end_error
:
end_error
:
git_buf_dispose
(
&
buf
);
git_buf_dispose
(
&
buf
);
...
...
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