ble_mesh: stack: Fix crash for net_key_del when subnet is NULL

This commit is contained in:
wangjialiang 2021-03-25 18:04:47 +08:00 committed by bot
parent 7bfae982e4
commit fbacede604

View File

@ -2352,7 +2352,7 @@ send_status:
if (status == STATUS_SUCCESS) {
bt_mesh_cfg_server_state_change_t change = {0};
change.cfg_netkey_delete.net_idx = sub->net_idx;
change.cfg_netkey_delete.net_idx = sub ? sub->net_idx : BLE_MESH_KEY_UNUSED;
bt_mesh_config_server_cb_evt_to_btc(BTC_BLE_MESH_EVT_CONFIG_SERVER_STATE_CHANGE,
model, ctx, (const uint8_t *)&change, sizeof(change));
}