mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
ble_mesh: Check buf->ref before unref the buffer
This commit is contained in:
parent
b5ab64b4d9
commit
bb2c0475eb
@ -339,8 +339,8 @@ void bt_mesh_unref_buf_from_pool(struct net_buf_pool *pool)
|
||||
struct net_buf *buf = &pool->__bufs[i];
|
||||
if (buf->ref > 1U) {
|
||||
buf->ref = 1U;
|
||||
net_buf_unref(buf);
|
||||
}
|
||||
net_buf_unref(buf);
|
||||
}
|
||||
}
|
||||
|
||||
@ -382,6 +382,9 @@ static void bt_mesh_unref_buf(bt_mesh_msg_t *msg)
|
||||
if (msg->arg) {
|
||||
buf = (struct net_buf *)msg->arg;
|
||||
BLE_MESH_ADV(buf)->busy = 0U;
|
||||
if (buf->ref > 1U) {
|
||||
buf->ref = 1U;
|
||||
}
|
||||
net_buf_unref(buf);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user