From e897eaaa9f01f37a03fef5577ba01e1424fc8f55 Mon Sep 17 00:00:00 2001 From: Vinicius Costa Gomes Date: Tue, 29 Jan 2013 16:00:06 -0300 Subject: [PATCH] gas: Fix not sending response to indication Even if the remote device is not bonded, we should send the response to the indication. If we don't the remote device may disconnect. --- profiles/gatt/gas.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/profiles/gatt/gas.c b/profiles/gatt/gas.c index c0520af3b..9360201bf 100644 --- a/profiles/gatt/gas.c +++ b/profiles/gatt/gas.c @@ -183,16 +183,16 @@ static void indication_cb(const uint8_t *pdu, uint16_t len, gpointer user_data) DBG("Service Changed start: 0x%04X end: 0x%04X", start, end); - if (device_is_bonded(gas->device) == FALSE) { - DBG("Ignoring Service Changed: device is not bonded"); - return; - } - /* Confirming indication received */ opdu = g_attrib_get_buffer(gas->attrib, &plen); olen = enc_confirmation(opdu, plen); g_attrib_send(gas->attrib, 0, opdu, olen, NULL, NULL, NULL); + if (device_is_bonded(gas->device) == FALSE) { + DBG("Ignoring Service Changed: device is not bonded"); + return; + } + btd_device_gatt_set_service_changed(gas->device, start, end); } -- 2.47.3