X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Ftest_rwlock.c;h=298904077143239678f2ca33a929054862649734;hb=89451e1b67738953bb2a10fd1fba7b12e73c0440;hp=6c137cb1b1f9af05ac1308aa4ea22db74c1f2881;hpb=95d8822d8b4c4a3563bf51c7c718350eb2babd20;p=urcu.git diff --git a/tests/test_rwlock.c b/tests/test_rwlock.c index 6c137cb..2989040 100644 --- a/tests/test_rwlock.c +++ b/tests/test_rwlock.c @@ -353,10 +353,10 @@ int main(int argc, char **argv) "main", (unsigned long) pthread_self(), (unsigned long) gettid()); - 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;