fix(nimble): Removed double free of packet

pull/13294/head
Rahul Tank 2024-02-13 14:14:03 +05:30
rodzic 7e7b1fc65f
commit 3d03c07c84
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -72,8 +72,8 @@ blecent_l2cap_coc_send_data(struct ble_l2cap_chan *chan)
MODLOG_DFLT(INFO, "Data sent successfully");
} else {
MODLOG_DFLT(INFO, "Data sending failed, rc = %d", rc);
os_mbuf_free_chain(sdu_rx_data);
}
os_mbuf_free(sdu_rx_data);
}
/**