mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-06 21:01:15 +00:00
Resolve remaining feedback
* replace some ints with size_ts * update NULL checks in various places
This commit is contained in:
parent
3aa294fd45
commit
679b69c49d
22
src/buffer.c
22
src/buffer.c
@ -79,7 +79,7 @@ void git_buf_put(git_buf *buf, const char *data, size_t len)
|
|||||||
|
|
||||||
void git_buf_puts(git_buf *buf, const char *string)
|
void git_buf_puts(git_buf *buf, const char *string)
|
||||||
{
|
{
|
||||||
if (string != NULL)
|
assert(string);
|
||||||
git_buf_put(buf, string, strlen(string));
|
git_buf_put(buf, string, strlen(string));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,12 +121,10 @@ const char *git_buf_cstr(git_buf *buf)
|
|||||||
|
|
||||||
void git_buf_free(git_buf *buf)
|
void git_buf_free(git_buf *buf)
|
||||||
{
|
{
|
||||||
assert(buf);
|
if (!buf) return;
|
||||||
|
|
||||||
if (buf->ptr) {
|
|
||||||
git__free(buf->ptr);
|
git__free(buf->ptr);
|
||||||
buf->ptr = NULL;
|
buf->ptr = NULL;
|
||||||
}
|
|
||||||
buf->asize = 0;
|
buf->asize = 0;
|
||||||
buf->size = 0;
|
buf->size = 0;
|
||||||
}
|
}
|
||||||
@ -179,7 +177,7 @@ void git_buf_join_n(git_buf *buf, char separator, int nbuf, ...)
|
|||||||
|
|
||||||
va_list ap;
|
va_list ap;
|
||||||
int i;
|
int i;
|
||||||
int total_size = 0;
|
size_t total_size = 0;
|
||||||
char *out;
|
char *out;
|
||||||
|
|
||||||
if (buf->size > 0 && buf->ptr[buf->size - 1] != separator)
|
if (buf->size > 0 && buf->ptr[buf->size - 1] != separator)
|
||||||
@ -188,7 +186,7 @@ void git_buf_join_n(git_buf *buf, char separator, int nbuf, ...)
|
|||||||
va_start(ap, nbuf);
|
va_start(ap, nbuf);
|
||||||
for (i = 0; i < nbuf; ++i) {
|
for (i = 0; i < nbuf; ++i) {
|
||||||
const char* segment;
|
const char* segment;
|
||||||
int segment_len;
|
size_t segment_len;
|
||||||
|
|
||||||
segment = va_arg(ap, const char *);
|
segment = va_arg(ap, const char *);
|
||||||
if (!segment)
|
if (!segment)
|
||||||
@ -212,7 +210,7 @@ void git_buf_join_n(git_buf *buf, char separator, int nbuf, ...)
|
|||||||
va_start(ap, nbuf);
|
va_start(ap, nbuf);
|
||||||
for (i = 0; i < nbuf; ++i) {
|
for (i = 0; i < nbuf; ++i) {
|
||||||
const char* segment;
|
const char* segment;
|
||||||
int segment_len;
|
size_t segment_len;
|
||||||
|
|
||||||
segment = va_arg(ap, const char *);
|
segment = va_arg(ap, const char *);
|
||||||
if (!segment)
|
if (!segment)
|
||||||
@ -245,11 +243,11 @@ void git_buf_join(
|
|||||||
const char *str_a,
|
const char *str_a,
|
||||||
const char *str_b)
|
const char *str_b)
|
||||||
{
|
{
|
||||||
int add_size = 0;
|
size_t add_size = 0;
|
||||||
int sep_a = 0;
|
size_t sep_a = 0;
|
||||||
int strlen_a = 0;
|
size_t strlen_a = 0;
|
||||||
int sep_b = 0;
|
size_t sep_b = 0;
|
||||||
int strlen_b = 0;
|
size_t strlen_b = 0;
|
||||||
char *ptr;
|
char *ptr;
|
||||||
|
|
||||||
/* calculate string lengths and need for added separators */
|
/* calculate string lengths and need for added separators */
|
||||||
|
@ -257,12 +257,9 @@ check_buf_append_abc(
|
|||||||
/* more variations on append tests */
|
/* more variations on append tests */
|
||||||
void test_core_buffer__5(void)
|
void test_core_buffer__5(void)
|
||||||
{
|
{
|
||||||
check_buf_append(NULL, NULL, NULL, 0, 0);
|
|
||||||
check_buf_append(NULL, "", "", 0, 8);
|
|
||||||
check_buf_append("", NULL, "", 0, 8);
|
|
||||||
check_buf_append("", "", "", 0, 8);
|
check_buf_append("", "", "", 0, 8);
|
||||||
check_buf_append("a", NULL, "a", 1, 8);
|
check_buf_append("a", "", "a", 1, 8);
|
||||||
check_buf_append(NULL, "a", "a", 1, 8);
|
check_buf_append("", "a", "a", 1, 8);
|
||||||
check_buf_append("", "a", "a", 1, 8);
|
check_buf_append("", "a", "a", 1, 8);
|
||||||
check_buf_append("a", "", "a", 1, 8);
|
check_buf_append("a", "", "a", 1, 8);
|
||||||
check_buf_append("a", "b", "ab", 2, 8);
|
check_buf_append("a", "b", "ab", 2, 8);
|
||||||
@ -287,7 +284,6 @@ void test_core_buffer__5(void)
|
|||||||
check_buf_append(REP16("x"), REP16("o"),
|
check_buf_append(REP16("x"), REP16("o"),
|
||||||
REP16("x") REP16("o"), 32, 40);
|
REP16("x") REP16("o"), 32, 40);
|
||||||
|
|
||||||
check_buf_append(test_4096, NULL, test_4096, 4096, 6144);
|
|
||||||
check_buf_append(test_4096, "", test_4096, 4096, 6144);
|
check_buf_append(test_4096, "", test_4096, 4096, 6144);
|
||||||
check_buf_append(test_4096, test_4096, test_8192, 8192, 9216);
|
check_buf_append(test_4096, test_4096, test_8192, 8192, 9216);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user