BLE: set ble event queue pointer to NULL after it has been deleted

This commit is contained in:
Th3maz1ng 2025-02-09 19:05:59 +01:00
parent 9a472decf1
commit bd2a19e2a0

View File

@ -96,6 +96,7 @@ ble_npl_eventq_deinit(struct ble_npl_eventq *evq)
{
if(evq && evq->q) {
tls_os_queue_delete(evq->q);
evq->q = NULL;
}
}