mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
tests: Add more const near malloc/calloc/realloc
This commit is contained in:
parent
34dc95a08a
commit
f5e20fcb9d
3 changed files with 4 additions and 4 deletions
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue