mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-06 17:35:20 +02:00
wifi: mt76: mt7996: fix uninitialized TLV data
[ Upstream commit9e461f4a23
] Use skb_put_zero instead of skb_put Fixes:98686cd216
("wifi: mt76: mt7996: add driver for MediaTek Wi-Fi 7 (802.11be) devices") Link: https://patch.msgid.link/20240827093011.18621-23-nbd@nbd.name Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2d9f3e56b9
commit
2780657f7f
|
@ -520,7 +520,7 @@ void mt7996_mcu_rx_event(struct mt7996_dev *dev, struct sk_buff *skb)
|
|||
static struct tlv *
|
||||
mt7996_mcu_add_uni_tlv(struct sk_buff *skb, u16 tag, u16 len)
|
||||
{
|
||||
struct tlv *ptlv = skb_put(skb, len);
|
||||
struct tlv *ptlv = skb_put_zero(skb, len);
|
||||
|
||||
ptlv->tag = cpu_to_le16(tag);
|
||||
ptlv->len = cpu_to_le16(len);
|
||||
|
|
Loading…
Reference in New Issue
Block a user