Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_fcs_1385' into 'master'
Browse files Browse the repository at this point in the history
fix(bt/bluedroid): Fixed crash when calculating GATTS database hash

See merge request espressif/esp-idf!28788
  • Loading branch information
esp-cjh committed Mar 7, 2024
2 parents 64c1ed2 + b99cb00 commit d76ac45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/bt/host/bluedroid/stack/btu/btu_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ void btu_init_core(void)
#endif

#if BLE_INCLUDED == TRUE
#if (defined(GATT_INCLUDED) && GATT_INCLUDED == true)
gatt_init();
#endif
#if (defined(SMP_INCLUDED) && SMP_INCLUDED == TRUE)
SMP_Init();
#endif
#if (defined(GATT_INCLUDED) && GATT_INCLUDED == true)
gatt_init();
#endif
btm_ble_init();
#endif
Expand Down

0 comments on commit d76ac45

Please sign in to comment.