diff options
author | Jeff King <peff@peff.net> | 2018-02-14 19:06:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-02-14 19:31:09 +0100 |
commit | b6c4380d6e3170e21e6670248b7f332c57cb077c (patch) | |
tree | 71ffdaf12759ee6a15245b6329e662dccf895cc7 /t/helper/test-hashmap.c | |
parent | test-hashmap: use ALLOC_ARRAY rather than bare malloc (diff) | |
download | git-b6c4380d6e3170e21e6670248b7f332c57cb077c.tar.xz git-b6c4380d6e3170e21e6670248b7f332c57cb077c.zip |
test-hashmap: check allocation computation for overflow
When we allocate the test_entry flex-struct, we have to add
up all of the elements that go into the flex array. If these
were to overflow a size_t, this would allocate a too-small
buffer, which we would then overflow in our memcpy steps.
Since this is just a test-helper, it probably doesn't matter
in practice, but we should model the correct technique by
using the st_add() macros.
Unfortunately, we cannot use the FLEX_ALLOC() macros here,
because we are stuffing two different buffers into a single
flex array.
While we're here, let's also swap out "malloc" for our
error-checking "xmalloc", and use the preferred
"sizeof(*var)" instead of "sizeof(type)".
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper/test-hashmap.c')
-rw-r--r-- | t/helper/test-hashmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/helper/test-hashmap.c b/t/helper/test-hashmap.c index b36886bf35..2100877c2b 100644 --- a/t/helper/test-hashmap.c +++ b/t/helper/test-hashmap.c @@ -32,8 +32,7 @@ static int test_entry_cmp(const void *cmp_data, static struct test_entry *alloc_test_entry(int hash, char *key, int klen, char *value, int vlen) { - struct test_entry *entry = malloc(sizeof(struct test_entry) + klen - + vlen + 2); + struct test_entry *entry = xmalloc(st_add4(sizeof(*entry), klen, vlen, 2)); hashmap_entry_init(entry, hash); memcpy(entry->key, key, klen + 1); memcpy(entry->key + klen + 1, value, vlen + 1); |