mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-14 06:25:08 +08:00
shared/gatt-client: Fix removing services from pending list
We should remove from pending list service which was just processed, not the one that has just started being processed.
This commit is contained in:
parent
009acf56fb
commit
c8e7911e80
@ -591,10 +591,13 @@ static bool discover_descs(struct discovery_op *op, bool *discovering)
|
||||
/* Adjust current service */
|
||||
svc = gatt_db_get_service(client->db, chrc_data->value_handle);
|
||||
if (op->cur_svc != svc) {
|
||||
queue_remove(op->pending_svcs, svc);
|
||||
if (op->cur_svc) {
|
||||
queue_remove(op->pending_svcs, op->cur_svc);
|
||||
|
||||
/* Done with the current service */
|
||||
gatt_db_service_set_active(op->cur_svc, true);
|
||||
}
|
||||
|
||||
/* Done with the current service */
|
||||
gatt_db_service_set_active(op->cur_svc, true);
|
||||
op->cur_svc = svc;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user