mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-07 17:44:12 -05:00
brcmsmac: improve readability on addresses copy
A static analyzer identified as a potential bug the copy of 12 bytes from a 6 bytes array to a 6 bytes array. Both arrays are 6 bytes addresses. Although not being a real bug, it is not immediately clear why is done this way: next 6 bytes address, contiguous to the first one, must also be copied to next contiguous 6 bytes address of the destination. Copying each one separately will make both static analyzers and reviewers happier. Signed-off-by: Íñigo Huguet <ihuguet@redhat.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20210511070257.7843-1-ihuguet@redhat.com
This commit is contained in:
@@ -6607,7 +6607,8 @@ brcms_c_d11hdrs_mac80211(struct brcms_c_info *wlc, struct ieee80211_hw *hw,
|
||||
rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
|
||||
IEEE80211_STYPE_RTS);
|
||||
|
||||
memcpy(&rts->ra, &h->addr1, 2 * ETH_ALEN);
|
||||
memcpy(&rts->ra, &h->addr1, ETH_ALEN);
|
||||
memcpy(&rts->ta, &h->addr2, ETH_ALEN);
|
||||
}
|
||||
|
||||
/* mainrate
|
||||
|
||||
Reference in New Issue
Block a user