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

Commit 1286c4ce authored by Alexey V. Vissarionov's avatar Alexey V. Vissarionov Committed by Greg Kroah-Hartman
Browse files

wifi: ath6kl: minor fix for allocation size



[ Upstream commit 778f83f889e7fca37780d9640fcbd0229ae38eaa ]

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: bdcd8170 ("Add ath6kl cleaned up driver")
Signed-off-by: default avatarAlexey V. Vissarionov <gremlin@altlinux.org>
Signed-off-by: default avatarKalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230117110414.GC12547@altlinux.org


Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent a3e7a3d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;