From 96a3b10edc86091500296b839c739be1376cb57e Mon Sep 17 00:00:00 2001 From: himanshu Date: Thu, 30 Jan 2020 12:20:59 +0530 Subject: [PATCH] Fix: Change the parse_options function call in TIZEN_FEATURE_BLUEZ_MODIFY tag This change is because of the implementation of type option in Characteristic.WriteValue This change was introduced in the following upstream patch. Commit ID - aa9f9b193c51d371b5d2a863f35a034ee0377b22 In order to sync the TIZEN CODE with the upstream this fix is needed. Change-Id: I5ed1359a4fb3b704b8d33d540bb0d5956fb93ebb Signed-off-by: himanshu --- src/gatt-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gatt-client.c b/src/gatt-client.c index 1e4ae3c..0b1380b 100644 --- a/src/gatt-client.c +++ b/src/gatt-client.c @@ -1362,7 +1362,7 @@ static DBusMessage *characteristic_write_value_by_type(DBusConnection *conn, if (parse_type_value_arg(&iter, &write_type, &value, &value_len)) return btd_error_invalid_args(msg); - if (parse_options(&iter, &offset)) + if (parse_options(&iter, &offset,NULL)) return btd_error_invalid_args(msg); if ((write_type & chrc->props) == BT_GATT_CHRC_PROP_WRITE) { -- 2.7.4