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
fb62dc90
Commit
fb62dc90
authored
Jan 20, 2014
by
Russell Belfer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2064 from piki/piki/buffer-corner-cases
Fix a couple of corner cases and an undefined behavior
parents
b97e55f2
abdaf936
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
+37
-3
src/buffer.c
+6
-3
tests/core/buffer.c
+31
-0
No files found.
src/buffer.c
View file @
fb62dc90
...
...
@@ -66,8 +66,10 @@ int git_buf_try_grow(
new_ptr
=
git__realloc
(
new_ptr
,
new_size
);
if
(
!
new_ptr
)
{
if
(
mark_oom
)
if
(
mark_oom
)
{
if
(
buf
->
ptr
)
git__free
(
buf
->
ptr
);
buf
->
ptr
=
git_buf__oom
;
}
return
-
1
;
}
...
...
@@ -432,7 +434,7 @@ int git_buf_join(
ssize_t
offset_a
=
-
1
;
/* not safe to have str_b point internally to the buffer */
assert
(
str_b
<
buf
->
ptr
||
str_b
>
buf
->
ptr
+
buf
->
size
);
assert
(
str_b
<
buf
->
ptr
||
str_b
>
=
buf
->
ptr
+
buf
->
size
);
/* figure out if we need to insert a separator */
if
(
separator
&&
strlen_a
)
{
...
...
@@ -447,13 +449,14 @@ int git_buf_join(
if
(
git_buf_grow
(
buf
,
strlen_a
+
strlen_b
+
need_sep
+
1
)
<
0
)
return
-
1
;
assert
(
buf
->
ptr
);
/* fix up internal pointers */
if
(
offset_a
>=
0
)
str_a
=
buf
->
ptr
+
offset_a
;
/* do the actual copying */
if
(
offset_a
!=
0
)
if
(
offset_a
!=
0
&&
str_a
)
memmove
(
buf
->
ptr
,
str_a
,
strlen_a
);
if
(
need_sep
)
buf
->
ptr
[
strlen_a
]
=
separator
;
...
...
tests/core/buffer.c
View file @
fb62dc90
...
...
@@ -406,6 +406,23 @@ check_joinbuf_2(
}
static
void
check_joinbuf_overlapped
(
const
char
*
oldval
,
int
ofs_a
,
const
char
*
b
,
const
char
*
expected
)
{
char
sep
=
'/'
;
git_buf
buf
=
GIT_BUF_INIT
;
git_buf_sets
(
&
buf
,
oldval
);
git_buf_join
(
&
buf
,
sep
,
buf
.
ptr
+
ofs_a
,
b
);
cl_assert
(
git_buf_oom
(
&
buf
)
==
0
);
cl_assert_equal_s
(
expected
,
git_buf_cstr
(
&
buf
));
git_buf_free
(
&
buf
);
}
static
void
check_joinbuf_n_2
(
const
char
*
a
,
const
char
*
b
,
...
...
@@ -480,6 +497,20 @@ void test_core_buffer__8(void)
check_joinbuf_2
(
"/abcd/"
,
"defg/"
,
"/abcd/defg/"
);
check_joinbuf_2
(
"/abcd/"
,
"/defg/"
,
"/abcd/defg/"
);
check_joinbuf_overlapped
(
"abcd"
,
0
,
"efg"
,
"abcd/efg"
);
check_joinbuf_overlapped
(
"abcd"
,
1
,
"efg"
,
"bcd/efg"
);
check_joinbuf_overlapped
(
"abcd"
,
2
,
"efg"
,
"cd/efg"
);
check_joinbuf_overlapped
(
"abcd"
,
3
,
"efg"
,
"d/efg"
);
check_joinbuf_overlapped
(
"abcd"
,
4
,
"efg"
,
"efg"
);
check_joinbuf_overlapped
(
"abc/"
,
2
,
"efg"
,
"c/efg"
);
check_joinbuf_overlapped
(
"abc/"
,
3
,
"efg"
,
"/efg"
);
check_joinbuf_overlapped
(
"abc/"
,
4
,
"efg"
,
"efg"
);
check_joinbuf_overlapped
(
"abcd"
,
3
,
""
,
"d/"
);
check_joinbuf_overlapped
(
"abcd"
,
4
,
""
,
""
);
check_joinbuf_overlapped
(
"abc/"
,
2
,
""
,
"c/"
);
check_joinbuf_overlapped
(
"abc/"
,
3
,
""
,
"/"
);
check_joinbuf_overlapped
(
"abc/"
,
4
,
""
,
""
);
check_joinbuf_n_2
(
""
,
""
,
""
);
check_joinbuf_n_2
(
""
,
"a"
,
"a"
);
check_joinbuf_n_2
(
""
,
"/a"
,
"/a"
);
...
...
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