aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2019-08-17 14:18:41 +0200
committerMaria Matejka <mq@ucw.cz>2020-05-01 15:19:12 +0200
commit3bb10b4d31d68a8139e284c27f7eb6fca897721d (patch)
treec86de6849dae9309e5585f768fc738e279de3954 /lib
parent258be56539a3d4b47fe779f9658ca3d88761878d (diff)
downloadbird-3bb10b4d31d68a8139e284c27f7eb6fca897721d.tar.gz
Uninitialized list nodes fixes
Diffstat (limited to 'lib')
-rw-r--r--lib/resource.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/resource.c b/lib/resource.c
index ab8c800f..7e624321 100644
--- a/lib/resource.c
+++ b/lib/resource.c
@@ -340,6 +340,7 @@ mb_alloc(pool *p, unsigned size)
struct mblock *b = xmalloc(sizeof(struct mblock) + size);
b->r.class = &mb_class;
+ b->r.n = (node) {};
add_tail(&p->inside, &b->r.n);
b->size = size;
return b->data;