ble_mesh: Typo in condition in comp_add_elem of cfg_srv [Zephyr]

Vendor model IDs take up four (not two) bytes in the composition
This commit is contained in:
lly 2020-03-26 09:16:26 +08:00
parent 7ea60199a6
commit 91fff8c897

View file

@ -49,7 +49,7 @@ static int comp_add_elem(struct net_buf_simple *buf, struct bt_mesh_elem *elem,
int i;
if (net_buf_simple_tailroom(buf) <
4 + (elem->model_count * 2U) + (elem->vnd_model_count * 2U)) {
4 + (elem->model_count * 2U) + (elem->vnd_model_count * 4U)) {
BT_ERR("%s, Too large device composition", __func__);
return -E2BIG;
}