* [PATCH BlueZ] shared/gatt-db: fix crash on bad attribute index in get_char_data
@ 2025-04-20 21:36 Pauli Virtanen
2025-04-22 9:11 ` patchwork-bot+bluetooth
0 siblings, 1 reply; 2+ messages in thread
From: Pauli Virtanen @ 2025-04-20 21:36 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Pauli Virtanen
Fix AddressSanitizer: heap-buffer-overflow when index == 0.
---
src/shared/gatt-db.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c
index b44140523..8951079be 100644
--- a/src/shared/gatt-db.c
+++ b/src/shared/gatt-db.c
@@ -1980,8 +1980,8 @@ bool gatt_db_attribute_get_char_data(const struct gatt_db_attribute *attrib,
/* Check if Characteristic Value was passed instead */
index = gatt_db_attribute_get_index(attrib);
- if (index < 0)
- return NULL;
+ if (index <= 0)
+ return false;
attrib = attrib->service->attributes[index - 1];
if (bt_uuid_cmp(&characteristic_uuid, &attrib->uuid))
--
2.49.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-22 9:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-20 21:36 [PATCH BlueZ] shared/gatt-db: fix crash on bad attribute index in get_char_data Pauli Virtanen
2025-04-22 9:11 ` patchwork-bot+bluetooth
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.