summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound_trigger_hw_iaxxx.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sound_trigger_hw_iaxxx.c b/sound_trigger_hw_iaxxx.c
index 91f78fc..014c96a 100644
--- a/sound_trigger_hw_iaxxx.c
+++ b/sound_trigger_hw_iaxxx.c
@@ -2683,7 +2683,7 @@ static int stdev_load_sound_model(const struct sound_trigger_hw_device *dev,
int ret = 0;
int kw_model_sz = 0;
int i = 0;
-
+ sound_trigger_uuid_t empty_uuid = {0};
unsigned char *kw_buffer = NULL;
ALOGD("+%s+", __func__);
@@ -2706,6 +2706,12 @@ static int stdev_load_sound_model(const struct sound_trigger_hw_device *dev,
goto exit;
}
+ if (check_uuid_equality(sound_model->vendor_uuid, empty_uuid)) {
+ ALOGE("%s Invalid vendor uuid", __func__);
+ ret = -EINVAL;
+ goto exit;
+ }
+
// When a delayed CHRE/Oslo destroy process is in progress,
// we should not skip the new model and return the existing handle
// which will be destroyed soon.