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
2d449a11
Commit
2d449a11
authored
Oct 09, 2018
by
Nelson Elhage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config: Refactor `git_config_backend_from_string` to take a length
parent
b37a5954
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
src/config_backend.h
+2
-1
src/config_mem.c
+2
-2
tests/config/memory.c
+4
-3
No files found.
src/config_backend.h
View file @
2d449a11
...
...
@@ -30,8 +30,9 @@ extern int git_config_backend_from_file(git_config_backend **out, const char *pa
*
* @param out the new backend
* @param cfg the configuration that is to be parsed
* @param len the length of the string pointed to by `cfg`
*/
extern
int
git_config_backend_from_string
(
git_config_backend
**
out
,
const
char
*
cfg
);
extern
int
git_config_backend_from_string
(
git_config_backend
**
out
,
const
char
*
cfg
,
size_t
len
);
GIT_INLINE
(
int
)
git_config_backend_open
(
git_config_backend
*
cfg
,
unsigned
int
level
,
const
git_repository
*
repo
)
{
...
...
src/config_mem.c
View file @
2d449a11
...
...
@@ -186,7 +186,7 @@ static void config_memory_free(git_config_backend *_backend)
git__free
(
backend
);
}
int
git_config_backend_from_string
(
git_config_backend
**
out
,
const
char
*
cfg
)
int
git_config_backend_from_string
(
git_config_backend
**
out
,
const
char
*
cfg
,
size_t
len
)
{
config_memory_backend
*
backend
;
...
...
@@ -198,7 +198,7 @@ int git_config_backend_from_string(git_config_backend **out, const char *cfg)
return
-
1
;
}
if
(
git_buf_
sets
(
&
backend
->
cfg
,
cfg
)
<
0
)
{
if
(
git_buf_
put
(
&
backend
->
cfg
,
cfg
,
len
)
<
0
)
{
git_config_entries_free
(
backend
->
entries
);
git__free
(
backend
);
return
-
1
;
...
...
tests/config/memory.c
View file @
2d449a11
...
...
@@ -61,7 +61,7 @@ static void assert_config_contains_all(git_config_backend *backend,
static
void
setup_backend
(
const
char
*
cfg
)
{
cl_git_pass
(
git_config_backend_from_string
(
&
backend
,
cfg
));
cl_git_pass
(
git_config_backend_from_string
(
&
backend
,
cfg
,
strlen
(
cfg
)
));
cl_git_pass
(
git_config_backend_open
(
backend
,
0
,
NULL
));
}
...
...
@@ -85,9 +85,10 @@ void test_config_memory__simple(void)
void
test_config_memory__malformed_fails_to_open
(
void
)
{
c
l_git_pass
(
git_config_backend_from_string
(
&
backend
,
c
onst
char
*
cfg
=
"[general
\n
"
"foo=bar
\n
"
));
"foo=bar
\n
"
;
cl_git_pass
(
git_config_backend_from_string
(
&
backend
,
cfg
,
strlen
(
cfg
)));
cl_git_fail
(
git_config_backend_open
(
backend
,
0
,
NULL
));
}
...
...
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