From faa7d6bac1d9f8a8b30b765cf1580b4503e183ad Mon Sep 17 00:00:00 2001 From: Hyuk Lee Date: Fri, 24 Jun 2016 17:00:31 +0900 Subject: [PATCH] Add the init status check to "GATT server start" Change-Id: I40f6fe61108d5d278d2be64b88aaedaa93700dee Signed-off-by: Hyuk Lee --- src/bluetooth-gatt.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bluetooth-gatt.c b/src/bluetooth-gatt.c index be65794..7addffd 100644 --- a/src/bluetooth-gatt.c +++ b/src/bluetooth-gatt.c @@ -2293,12 +2293,17 @@ int bt_gatt_server_start(void) int ret = BT_ERROR_NONE; BT_CHECK_GATT_SUPPORT(); + BT_CHECK_INIT_STATUS(); + BT_CHECK_GATT_SERVER_INIT_STATUS(); if (!is_gatt_server_started) { ret = bluetooth_gatt_register_application(); if (ret != BT_ERROR_NONE) + { BT_ERR("%s(0x%08x)", _bt_convert_error_to_string(ret), ret); + return ret; + } is_gatt_server_started = true; return ret; -- 2.34.1