From: Arran Cudbard-Bell Date: Mon, 13 Jun 2022 14:59:09 +0000 (-0500) Subject: Initialise the group field for all structural types X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=983e97b3a7b28c6617f99edcd6485c340b694197;p=thirdparty%2Ffreeradius-server.git Initialise the group field for all structural types --- diff --git a/src/lib/util/value.h b/src/lib/util/value.h index 459056eaded..b9cc4cc59ec 100644 --- a/src/lib/util/value.h +++ b/src/lib/util/value.h @@ -454,7 +454,7 @@ void fr_value_box_init(fr_value_box_t *vb, fr_type_t type, fr_dict_attr_t const * all zeros, the following are the exceptions. */ switch (type) { - case FR_TYPE_GROUP: + case FR_TYPE_STRUCTURAL: fr_value_box_list_init(&vb->vb_group); break;