From 339844b22793c34278b2a55a5494ff121cc6e3f6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Gajda?= Date: Mon, 18 Nov 2019 11:51:18 +0100 Subject: [PATCH] mesh: Fix crash after deleting all subscriptions Change-Id: I5c05a9c804d6772fff5a76d366fb1fba844c5710 Signed-off-by: Abhay Agarwal --- mesh/model.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mesh/model.c b/mesh/model.c index 578fb79..f1e1a21 100644 --- a/mesh/model.c +++ b/mesh/model.c @@ -1469,9 +1469,8 @@ int mesh_model_sub_del_all(struct mesh_node *node, uint16_t addr, uint32_t id) for (; entry; entry = entry->next) mesh_net_dst_unreg(net, (uint16_t) L_PTR_TO_UINT(entry->data)); - l_queue_destroy(mod->subs, NULL); - l_queue_destroy(mod->virtuals, unref_virt); - mod->virtuals = l_queue_new(); + l_queue_clear(mod->subs, NULL); + l_queue_clear(mod->virtuals, unref_virt); return MESH_STATUS_SUCCESS; } -- 2.7.4