Merge branch 'bugfix/BLEQABR23-632v44' into 'release/v4.4'

fix(ble_mesh): avoid executing bt_mesh_host_init() more than once when using nimble (v4.4)

See merge request espressif/esp-idf!26243
This commit is contained in:
Jiang Jiang Jian 2023-10-07 14:13:27 +08:00
commit 6e44a7f589

View File

@ -88,7 +88,8 @@ int bt_mesh_host_init(void)
int rc;
if (init == true) {
return -EALREADY;
BT_WARN("Already initialized host for mesh!");
return 0;
}
rc = btc_init();