@@ -53,7 +53,7 @@
void
buf_size_error(const size_t size)
{
- msg(M_FATAL, "fatal buffer size error, size=%lu", (unsigned long)size);
+ msg(M_FATAL, "fatal buffer size error, size=%zu", size);
}
struct buffer
@@ -280,11 +280,6 @@
return ret;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wsign-compare"
-#endif
-
/*
* write a string to the end of a buffer that was
* truncated by buf_printf
@@ -295,7 +290,7 @@
if (buf_forward_capacity(buf) <= 1)
{
size_t len = strlen(str) + 1;
- if (len < buf_forward_capacity_total(buf))
+ if (buf_size_valid(len) && (int)len < buf_forward_capacity_total(buf))
{
memcpy(buf->data + buf->capacity - len, str, len);
}
@@ -782,7 +777,7 @@
buf_string_match_head_str(const struct buffer *src, const char *match)
{
const size_t size = strlen(match);
- if (size > src->len)
+ if (!buf_size_valid(size) || (int)size > src->len)
{
return false;
}
@@ -1196,7 +1191,7 @@
bool
buffer_list_defined(const struct buffer_list *ol)
{
- return ol && ol->head != NULL;
+ return ol && ol->head != NULL && ol->size > 0;
}
void
@@ -1223,7 +1218,7 @@
struct buffer_entry *e = buffer_list_push_data(ol, str, len + 1);
if (e)
{
- e->buf.len = (int)len; /* Don't count trailing '\0' as part of length */
+ e->buf.len--; /* Don't count trailing '\0' as part of length */
}
}
}
@@ -1249,6 +1244,7 @@
}
e->buf = alloc_buf(size);
memcpy(e->buf.data, data, size);
+ /* Note: size implicitly checked by alloc_buf */
e->buf.len = (int)size;
ol->tail = e;
}
@@ -1274,7 +1270,7 @@
const size_t sep_len = strlen(sep);
struct buffer_entry *more = bl->head;
size_t size = 0;
- int count = 0;
+ size_t count = 0;
for (; more; ++count)
{
size_t extra_len = BLENZ(&more->buf) + sep_len;
@@ -1313,10 +1309,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
void
buffer_list_aggregate(struct buffer_list *bl, const size_t max)
{
@@ -1326,7 +1318,7 @@
void
buffer_list_pop(struct buffer_list *ol)
{
- if (ol && ol->head)
+ if (buffer_list_defined(ol))
{
struct buffer_entry *e = ol->head->next;
free_buf(&ol->head->buf);
@@ -1149,8 +1149,8 @@
{
struct buffer_entry *head; /* next item to pop/peek */
struct buffer_entry *tail; /* last item pushed */
- int size; /* current number of entries */
- int max_size; /* maximum size list should grow to */
+ size_t size; /* current number of entries */
+ size_t max_size; /* maximum size list should grow to */
};
/**