Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ae0a476 authored by Bojun Pan's avatar Bojun Pan Committed by Gerrit - the friendly Code Review server
Browse files

msm: ipa : Fix KW array index issue on dbg_buff



KW raise the issue of "array 'dbg_buff' of size 4096
may use index value(s) 4096." The fix is to increase the
dbg_buff size to avoid it.

Change-Id: Ibb02e7fa73d9c0fb8924c90c66052255acc8275f
Signed-off-by: default avatarBojun Pan <bojunp@codeaurora.org>
parent 81876bc8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ const char *ipa3_hdr_proc_type_name[] = {
};

static struct dentry *dent;
static char dbg_buff[IPA_MAX_MSG_LEN];
static char dbg_buff[IPA_MAX_MSG_LEN + 1];
static char *active_clients_buf;

static s8 ep_reg_idx;