From 13f62f9d4bfee1b022f0f63246f12108212f09f4 Mon Sep 17 00:00:00 2001 From: Rahul Tank Date: Tue, 18 Apr 2023 15:01:09 +0530 Subject: [PATCH] Nimble: Fixes for memory leak / optimization --- components/bt/host/nimble/Kconfig.in | 2 +- components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c | 1 + components/bt/host/nimble/nimble | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/bt/host/nimble/Kconfig.in b/components/bt/host/nimble/Kconfig.in index 957671fdef..3359897725 100644 --- a/components/bt/host/nimble/Kconfig.in +++ b/components/bt/host/nimble/Kconfig.in @@ -480,7 +480,7 @@ config BT_NIMBLE_HS_STOP_TIMEOUT_MS config BT_NIMBLE_HOST_BASED_PRIVACY bool "Enable host based privacy for random address." default n - depends on BT_NIMBLE_ENABLED && !IDF_TARGET_ESP32 + depends on BT_NIMBLE_ENABLED && IDF_TARGET_ESP32 help Use this option to do host based Random Private Address resolution. If this option is disabled then controller based privacy is used. diff --git a/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c b/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c index da9fb2e97f..f60276dbea 100644 --- a/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c +++ b/components/bt/host/nimble/esp-hci/src/esp_nimble_hci.c @@ -366,6 +366,7 @@ static int host_rcv_pkt(uint8_t *data, uint16_t len) assert(evbuf != NULL); } + memset(evbuf, 0, sizeof *evbuf); memcpy(evbuf, &data[1], totlen); rc = ble_hci_trans_ll_evt_tx(evbuf); diff --git a/components/bt/host/nimble/nimble b/components/bt/host/nimble/nimble index 0bf2138ae3..85ffe748a2 160000 --- a/components/bt/host/nimble/nimble +++ b/components/bt/host/nimble/nimble @@ -1 +1 @@ -Subproject commit 0bf2138ae336325c7a2b6e34969fa02ef237b76f +Subproject commit 85ffe748a2f08d9293cae0a55a473155ccd049ab