Fix tests: use of uninitialized variables
[userspace-rcu.git] / tests / test_urcu_bp.c
index 30c79c17e32113a2c85ec219beb60c1b0f301528..75b60156812fdbadc4793b2cdb2f5d7728d9c297 100644 (file)
@@ -399,10 +399,10 @@ int main(int argc, char **argv)
                        (unsigned long) gettid());
 
        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;
 
This page took 0.023279 seconds and 4 git commands to generate.