X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Ftest_urcu_assign.c;h=dc6bf2f8c852c3048de59f4c71dc04b35962550e;hb=a5bae03d59c22e57263b8610b9fed99738303cf0;hp=67253da34dc6023d80e500924d41427898900405;hpb=94df63189704b8f6483c737988df3728f5e13c2d;p=urcu.git diff --git a/tests/test_urcu_assign.c b/tests/test_urcu_assign.c index 67253da..dc6bf2f 100644 --- a/tests/test_urcu_assign.c +++ b/tests/test_urcu_assign.c @@ -380,10 +380,10 @@ int main(int argc, char **argv) "main", urcu_get_thread_id()); test_array = calloc(1, sizeof(*test_array) * ARRAY_SIZE); - tid_reader = malloc(sizeof(*tid_reader) * nr_readers); - tid_writer = malloc(sizeof(*tid_writer) * nr_writers); - count_reader = malloc(sizeof(*count_reader) * nr_readers); - count_writer = malloc(sizeof(*count_writer) * nr_writers); + tid_reader = calloc(nr_readers, sizeof(*tid_reader)); + tid_writer = calloc(nr_writers, sizeof(*tid_writer)); + count_reader = calloc(nr_readers, sizeof(*count_reader)); + count_writer = calloc(nr_writers, sizeof(*count_writer)); next_aff = 0;