Fix tests: use of uninitialized variables
[urcu.git] / tests / test_urcu_hash.c
index 9416224d8af115491d689ff4328078482591d78c..f862adbf92c58d827dfaf0fc1601ebe5a1c4b212 100644 (file)
@@ -550,22 +550,22 @@ 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_reader = calloc(nr_readers, sizeof(*tid_reader));
        if (!tid_reader) {
                mainret = 1;
                goto end;
        }
-       tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
+       tid_writer = calloc(nr_writers, sizeof(*tid_writer));
        if (!tid_writer) {
                mainret = 1;
                goto end_free_tid_reader;
        }
-       count_reader = malloc(sizeof(*count_reader) * nr_readers);
+       count_reader = calloc(nr_readers, sizeof(*count_reader));
        if (!count_reader) {
                mainret = 1;
                goto end_free_tid_writer;
        }
-       count_writer = malloc(sizeof(*count_writer) * nr_writers);
+       count_writer = calloc(nr_writers, sizeof(*count_writer));
        if (!count_writer) {
                mainret = 1;
                goto end_free_count_reader;
This page took 0.022841 seconds and 4 git commands to generate.