[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230117110414.GC12547@altlinux.org>
Date: Tue, 17 Jan 2023 14:04:14 +0300
From: "Alexey V. Vissarionov" <gremlin@...linux.org>
To: Kalle Valo <kvalo@...nel.org>
Cc: "David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Vasanthakumar Thiagarajan <vthiagar@....qualcomm.com>,
Raja Mani <rmani@....qualcomm.com>,
Suraj Sumangala <surajs@....qualcomm.com>,
Vivek Natarajan <nataraja@....qualcomm.com>,
Joe Perches <joe@...ches.com>, linux-wireless@...r.kernel.org,
netdev@...r.kernel.org, lvc-project@...uxtesting.org,
"Alexey V. Vissarionov" <gremlin@...linux.org>
Subject: [PATCH] ath6kl: minor fix for allocation size
Although the "param" pointer occupies more or equal space compared
to "*param", the allocation size should use the size of variable
itself.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: bdcd81707973cf8a ("Add ath6kl cleaned up driver")
Signed-off-by: Alexey V. Vissarionov <gremlin@...linux.org>
diff --git a/drivers/net/wireless/ath/ath6kl/bmi.c b/drivers/net/wireless/ath/ath6kl/bmi.c
index bde5a10d470c8e74..af98e871199d317f 100644
--- a/drivers/net/wireless/ath/ath6kl/bmi.c
+++ b/drivers/net/wireless/ath/ath6kl/bmi.c
@@ -246,7 +246,7 @@ int ath6kl_bmi_execute(struct ath6kl *ar, u32 addr, u32 *param)
return -EACCES;
}
- size = sizeof(cid) + sizeof(addr) + sizeof(param);
+ size = sizeof(cid) + sizeof(addr) + sizeof(*param);
if (size > ar->bmi.max_cmd_size) {
WARN_ON(1);
return -EINVAL;
--
Alexey V. Vissarionov
gremlin ПРИ altlinux ТЧК org; +vii-cmiii-ccxxix-lxxix-xlii
GPG: 0D92F19E1C0DC36E27F61A29CD17E2B43D879005 @ hkp://keys.gnupg.net
Download attachment "signature.asc" of type "application/pgp-signature" (802 bytes)
Powered by blists - more mailing lists