summaryrefslogtreecommitdiff
path: root/chip
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2021-06-14 22:03:08 +0200
committerCommit Bot <commit-bot@chromium.org>2021-06-17 09:55:02 +0000
commitf767b8ebaa0b304aa79167c2407d1d1fc5618c63 (patch)
treee56a4a61e875df74466cc344960be7be444fa31f /chip
parentace3777e8929c59ba68b23755830dae054f2e5f7 (diff)
downloadchrome-ec-f767b8ebaa0b304aa79167c2407d1d1fc5618c63.tar.gz
ish/heci: initialize msg.payload before using it
BUG=none BRANCH=none TEST=one class of error less with gcc 11 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Change-Id: I7c0d2b28ae7805b390e485ff69ec0f6c2a7d5e98 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2959919 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Tested-by: Patrick Georgi <pgeorgi@chromium.org> Commit-Queue: Patrick Georgi <pgeorgi@chromium.org>
Diffstat (limited to 'chip')
-rw-r--r--chip/ish/ipc_heci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chip/ish/ipc_heci.c b/chip/ish/ipc_heci.c
index 3b8f4a31d1..9553e195c4 100644
--- a/chip/ish/ipc_heci.c
+++ b/chip/ish/ipc_heci.c
@@ -280,7 +280,7 @@ static int ipc_send_reset_notify(const ipc_handle_t handle)
static int ipc_send_cmpl_indication(struct ipc_if_ctx *ctx)
{
- struct ipc_msg msg;
+ struct ipc_msg msg = {0};
msg.drbl = IPC_BUILD_MNG_DB(MNG_RX_CMPL_INDICATION, 0);
ipc_write_raw(ctx, msg.drbl, msg.payload, IPC_DB_MSG_LENGTH(msg.drbl));