commit | 105861cb3defb8c64b8cf18ce34fe9526b20331e | [log] [tgz] |
---|---|---|
author | Linux Build Service Account <lnxbuild@localhost> | Fri Aug 07 04:11:19 2020 -0700 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Fri Aug 07 04:11:20 2020 -0700 |
tree | 79c38e016b993125e00029a33d295eba8e3c2a9e | |
parent | 1e74326d3fc4ea885d83fa364b97004bff35d4d2 [diff] | |
parent | b067f4751548b3076945806e4d836397a7b7bb99 [diff] |
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 b72e277..a2d9b03 100644 --- a/st_session.c +++ b/st_session.c
@@ -2659,6 +2659,11 @@ * during only one remaining client model as there won't be a * merged model yet. */ + if (!conf_levels) { + ALOGE("%s: ERROR. conf levels alloc failed", __func__); + status = -ENOMEM; + return status; + } memcpy(stc_ses->sm_info.cf_levels, conf_levels, stc_ses->sm_info.cf_levels_size);