From fb3c31be66e792888aeab4395ad593e98416bf0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Rymanowski?= Date: Tue, 9 Jun 2020 18:59:51 +0200 Subject: [PATCH] nimble/l2cap: Add missing proc free in ecoc reconfig response --- nimble/host/src/ble_l2cap_sig.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nimble/host/src/ble_l2cap_sig.c b/nimble/host/src/ble_l2cap_sig.c index a137afa1c..ad81c64a2 100644 --- a/nimble/host/src/ble_l2cap_sig.c +++ b/nimble/host/src/ble_l2cap_sig.c @@ -864,6 +864,7 @@ ble_l2cap_sig_credit_base_reconfig_rsp_rx(uint16_t conn_handle, rsp = (struct ble_l2cap_sig_credit_base_reconfig_rsp *)(*om)->om_data; ble_l2cap_sig_coc_reconfig_cb(proc, (rsp->result > 0) ? BLE_HS_EREJECT : 0); + ble_l2cap_sig_proc_free(proc); return 0; }