Diff between 80baeb02f1857ac92099ac415c1e7eb0b67914c5 and 993485b0555a210be82332c4398f63258d337632

Changed Files

File Additions Deletions Status
android/hal-health.c +6 -2 modified

Full Patch

diff --git a/android/hal-health.c b/android/hal-health.c
index 4ba6fe7..b92c881 100644
--- a/android/hal-health.c
+++ b/android/hal-health.c
@@ -101,9 +101,13 @@ static bt_status_t register_application(bthl_reg_param_t *reg, int *app_id)
 		mdep->role = reg->mdep_cfg[i].mdep_role;
 		mdep->data_type = reg->mdep_cfg[i].data_type;
 		mdep->channel_type = reg->mdep_cfg[i].channel_type;
-		mdep->descr_len = strlen(reg->mdep_cfg[i].mdep_description) + 1;
-		memcpy(mdep->descr, reg->mdep_cfg[i].mdep_description,
+
+		if (reg->mdep_cfg[i].mdep_description) {
+			mdep->descr_len =
+				strlen(reg->mdep_cfg[i].mdep_description) + 1;
+			memcpy(mdep->descr, reg->mdep_cfg[i].mdep_description,
 							mdep->descr_len);
+		}
 
 		status = hal_ipc_cmd(HAL_SERVICE_ID_HEALTH, HAL_OP_HEALTH_MDEP,
 						sizeof(*mdep) + mdep->descr_len,