X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Ftest_urcu_qsbr.c;h=85d8430c5f7a8cadd28519c14a4846139f01f612;hp=2e9e2b2c409a120bb0fee68f9eb6521b175062d5;hb=9aa14175d93952464fa8ec15df54e2656c349c0b;hpb=98f483d24f69785a7fb2e988f1053c34e84a4e61 diff --git a/tests/test_urcu_qsbr.c b/tests/test_urcu_qsbr.c index 2e9e2b2..85d8430 100644 --- a/tests/test_urcu_qsbr.c +++ b/tests/test_urcu_qsbr.c @@ -352,10 +352,10 @@ int main(int argc, char **argv) printf_verbose("thread %-6s, tid %lu\n", "main", urcu_get_thread_id()); - 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;