From: Hyuk Lee Date: Fri, 24 Jun 2016 08:00:31 +0000 (+0900) Subject: Add the init status check to "GATT server start" X-Git-Tag: submit/tizen/20160627.044451~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=faa7d6bac1d9f8a8b30b765cf1580b4503e183ad;p=platform%2Fcore%2Fapi%2Fbluetooth.git Add the init status check to "GATT server start" Change-Id: I40f6fe61108d5d278d2be64b88aaedaa93700dee Signed-off-by: Hyuk Lee --- 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;