diff options
-rw-r--r-- | src/selftest/allowedips.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/selftest/allowedips.c b/src/selftest/allowedips.c index 846db14..0d2a43a 100644 --- a/src/selftest/allowedips.c +++ b/src/selftest/allowedips.c @@ -296,6 +296,7 @@ static __init bool randomized_test(void) goto free; } kref_init(&peers[i]->refcount); + INIT_LIST_HEAD(&peers[i]->allowedips_list); } mutex_lock(&mutex); @@ -333,7 +334,7 @@ static __init bool randomized_test(void) if (wg_allowedips_insert_v4(&t, (struct in_addr *)mutated, cidr, peer, &mutex) < 0) { - pr_err("allowedips random malloc: FAIL\n"); + pr_err("allowedips random self-test malloc: FAIL\n"); goto free_locked; } if (horrible_allowedips_insert_v4(&h, |