Merge branch 'bugfix/ble_mesh_host_init' into 'master'

ble_mesh: nimble: return error if init host twice

See merge request espressif/esp-idf!13065
This commit is contained in:
Island 2021-11-03 02:25:03 +00:00
commit 417ef24b06

View File

@ -88,7 +88,7 @@ int bt_mesh_host_init(void)
int rc;
if (init == true) {
return 0;
return -EALREADY;
}
rc = btc_init();