Merge "st-hal: Fix potential NULL pointer dereference" into audio-hal.lnx.8.0
diff --git a/st_session.c b/st_session.c
index 10aef77..a2d9b03 100644
--- a/st_session.c
+++ b/st_session.c
@@ -2603,6 +2603,12 @@
if (v_info->merge_fs_soundmodels) {
/* merge_fs_soundmodels is true only for QC SVA UUID */
+ if (conf_levels == NULL) {
+ ALOGE("%s: Unexpected, conf_levels pointer is NULL",
+ __func__);
+ status = -EINVAL;
+ return status;
+ }
/*
* Note:
* For ADSP case, the generated conf levles size must be equal to
@@ -2711,6 +2717,13 @@
} else {
+ if (conf_levels == NULL) {
+ ALOGE("%s: Unexpected, conf_levels pointer is NULL",
+ __func__);
+ status = -EINVAL;
+ return status;
+ }
+
if (!st_ses->lab_enabled && enable_lab)
st_ses->lab_enabled = true;