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

Commit f57d8fa7 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76: mt7615: remove key check in mt7615_mcu_set_wtbl_key



Do not check key pointer in mt7615_mcu_set_wtbl_key since if set_key_cmd
is SET_KEY, key will be always not NULL. This patch will address a false
positive reported by Coverity-Scan

Addresses-Coverity-ID: 1445463 ("Dereference after null check")
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 80d2cb4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -879,7 +879,7 @@ int mt7615_mcu_set_wtbl_key(struct mt7615_dev *dev, int wcid,
		u8 cipher;

		cipher = mt7615_get_key_info(key, req.key.key_material);
		if (cipher == MT_CIPHER_NONE && key)
		if (cipher == MT_CIPHER_NONE)
			return -EOPNOTSUPP;

		req.key.rkv = 1;