forked from espressif/esp-idf
Merge branch 'bugfix/memory_cleanup_optimization' into 'master'
Nimble: Fixes for memory leak / optimization See merge request espressif/esp-idf!23759
This commit is contained in:
@ -479,7 +479,7 @@ config BT_NIMBLE_HS_STOP_TIMEOUT_MS
|
|||||||
config BT_NIMBLE_HOST_BASED_PRIVACY
|
config BT_NIMBLE_HOST_BASED_PRIVACY
|
||||||
bool "Enable host based privacy for random address."
|
bool "Enable host based privacy for random address."
|
||||||
default n
|
default n
|
||||||
depends on BT_NIMBLE_ENABLED && !IDF_TARGET_ESP32
|
depends on BT_NIMBLE_ENABLED && IDF_TARGET_ESP32
|
||||||
help
|
help
|
||||||
Use this option to do host based Random Private Address resolution.
|
Use this option to do host based Random Private Address resolution.
|
||||||
If this option is disabled then controller based privacy is used.
|
If this option is disabled then controller based privacy is used.
|
||||||
|
@ -216,6 +216,7 @@ static int host_rcv_pkt(uint8_t *data, uint16_t len)
|
|||||||
assert(evbuf != NULL);
|
assert(evbuf != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
memset(evbuf, 0, sizeof *evbuf);
|
||||||
memcpy(evbuf, &data[1], totlen);
|
memcpy(evbuf, &data[1], totlen);
|
||||||
|
|
||||||
rc = ble_hci_trans_ll_evt_tx(evbuf);
|
rc = ble_hci_trans_ll_evt_tx(evbuf);
|
||||||
|
Submodule components/bt/host/nimble/nimble updated: f710135ee1...d3d5c84b43
Reference in New Issue
Block a user