From 1678bc07467e6d977fc2f6bf830274ca92e0a6e5 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Tue, 24 Nov 2020 03:42:23 +0100 Subject: Fix some failed asserts due to add_tail() When config structures are copied due to template application, we need to reset list node structure before calling add_tail(). Thanks to Mikael Magnusson for patches. --- nest/proto.c | 1 + 1 file changed, 1 insertion(+) (limited to 'nest/proto.c') diff --git a/nest/proto.c b/nest/proto.c index 41b3a6b9..748601c3 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -626,6 +626,7 @@ channel_copy_config(struct channel_config *src, struct proto_config *proto) struct channel_config *dst = cfg_alloc(src->channel->config_size); memcpy(dst, src, src->channel->config_size); + memset(&dst->n, 0, sizeof(node)); add_tail(&proto->channels, &dst->n); CALL(src->channel->copy_config, dst, src); -- cgit v1.2.3