commit | ee821931e89a915efc3fc2cde733d694b2afc47b | [log] [tgz] |
---|---|---|
author | qctecmdr <qctecmdr@localhost> | Tue Dec 05 21:47:20 2023 -0800 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Tue Dec 05 21:47:20 2023 -0800 |
tree | 5dbd5bf799324244310e8cf0ba88eaf610600870 | |
parent | 0586bad813622b20389d003b7a41218c9b694f82 [diff] | |
parent | 1bf8152a654efb7794ecbbf4193202ec0a44a4a7 [diff] |
Merge "audio-HAL: Fix for KW static analysis issues"
diff --git a/post_proc/bundle.c b/post_proc/bundle.c index f898f64..b9d310d 100644 --- a/post_proc/bundle.c +++ b/post_proc/bundle.c
@@ -947,7 +947,8 @@ cmdSize, pCmdData, *replySize, pReplyData); if (cmdSize != sizeof(uint32_t) || pCmdData == NULL || pReplyData == NULL || *replySize != sizeof(int)) { - return -EINVAL; + status = -EINVAL; + goto exit; } uint32_t value = *(uint32_t *)pCmdData; if (context->ops.set_hw_acc_mode)