From 7a588b4067bdca7fa3dad608db0da03720d7cab5 Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Tue, 22 Apr 2014 15:06:03 +0300 Subject: [PATCH] android/health: Fix wrong boolean value for command handler bt_health_register_app contains variable data. --- android/health.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/health.c b/android/health.c index e4f8cbd68..0cda91a48 100644 --- a/android/health.c +++ b/android/health.c @@ -80,7 +80,7 @@ static void bt_health_destroy_channel(const void *buf, uint16_t len) static const struct ipc_handler cmd_handlers[] = { /* HAL_OP_HEALTH_REG_APP */ - { bt_health_register_app, false, + { bt_health_register_app, true, sizeof(struct hal_cmd_health_reg_app) }, /* HAL_OP_HEALTH_UNREG_APP */ { bt_health_unregister_app, false, -- 2.47.3