From: Jeff King Date: Wed, 14 Feb 2018 18:06:34 +0000 (-0500) Subject: test-hashmap: check allocation computation for overflow X-Git-Tag: v2.17.0-rc0~64^2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b6c4380d6e3170e21e6670248b7f332c57cb077c?hp=b6c4380d6e3170e21e6670248b7f332c57cb077c 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 Signed-off-by: Junio C Hamano ---