Fix tests: use of uninitialized variables
[userspace-rcu.git] / tests / test_urcu_defer.c
index b759e846b982fd8c0ef696bacfb9a068d0447f32..0bf4f813952131945efd06f3d487a56b9b8295e8 100644 (file)
@@ -388,10 +388,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);
-       tot_nr_writes = malloc(sizeof(*tot_nr_writes) * 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));
+       tot_nr_writes = calloc(nr_writers, sizeof(*tot_nr_writes));
 
        next_aff = 0;
 
This page took 0.022561 seconds and 4 git commands to generate.