tests: Add more const near malloc/calloc/realloc

This commit is contained in:
Sebastian Pipping 2023-09-19 19:06:06 +02:00
parent 34dc95a08a
commit f5e20fcb9d
3 changed files with 4 additions and 4 deletions

View file

@ -54,7 +54,7 @@ static AllocationEntry *find_allocation(const void *ptr);
/* Allocate some memory and keep track of it. */
void *
tracking_malloc(size_t size) {
AllocationEntry *entry = malloc(sizeof(AllocationEntry));
AllocationEntry *const entry = malloc(sizeof(AllocationEntry));
if (entry == NULL) {
printf("Allocator failure\n");

View file

@ -92,7 +92,7 @@ tcase_add_test(TCase *tc, tcase_test_function test) {
if (tc->allocated == tc->ntests) {
int nalloc = tc->allocated + 100;
size_t new_size = sizeof(tcase_test_function) * nalloc;
tcase_test_function *new_tests = realloc(tc->tests, new_size);
tcase_test_function *const new_tests = realloc(tc->tests, new_size);
assert(new_tests != NULL);
tc->tests = new_tests;
tc->allocated = nalloc;
@ -127,7 +127,7 @@ suite_free(Suite *suite) {
SRunner *
srunner_create(Suite *suite) {
SRunner *runner = calloc(1, sizeof(SRunner));
SRunner *const runner = calloc(1, sizeof(SRunner));
if (runner != NULL) {
runner->suite = suite;
}

View file

@ -60,7 +60,7 @@
static XML_Char *
xmlstrdup(const XML_Char *s) {
size_t byte_count = (xcstrlen(s) + 1) * sizeof(XML_Char);
XML_Char *dup = malloc(byte_count);
XML_Char *const dup = malloc(byte_count);
assert(dup != NULL);
memcpy(dup, s, byte_count);