From e4f4e50353762ca4dc7818ac5d347190a2cc8a54 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 27 Jun 2014 18:16:02 +0300 Subject: [PATCH] android/health: Add error check when creating app --- android/health.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/health.c b/android/health.c index 7d64a632a..0eeb0bd3d 100644 --- a/android/health.c +++ b/android/health.c @@ -820,6 +820,8 @@ static void bt_health_register_app(const void *buf, uint16_t len) app = create_health_app(app_name, provider, srv_name, srv_descr, cmd->num_of_mdep); + if (!app) + goto fail; if (!queue_push_tail(apps, app)) goto fail; -- 2.47.3