iwlegacy: initialize rx_status
The vendor radiotap patch added a few fields to struct ieee80211_rx_status that need to be zero, initialize the struct instead of using whatever was left on the stack. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Родитель
fbbdcc0213
Коммит
d369167f0a
|
@ -516,7 +516,7 @@ static void
|
|||
il3945_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
|
||||
{
|
||||
struct ieee80211_hdr *header;
|
||||
struct ieee80211_rx_status rx_status;
|
||||
struct ieee80211_rx_status rx_status = {};
|
||||
struct il_rx_pkt *pkt = rxb_addr(rxb);
|
||||
struct il3945_rx_frame_stats *rx_stats = IL_RX_STATS(pkt);
|
||||
struct il3945_rx_frame_hdr *rx_hdr = IL_RX_HDR(pkt);
|
||||
|
|
|
@ -613,7 +613,7 @@ void
|
|||
il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
|
||||
{
|
||||
struct ieee80211_hdr *header;
|
||||
struct ieee80211_rx_status rx_status;
|
||||
struct ieee80211_rx_status rx_status = {};
|
||||
struct il_rx_pkt *pkt = rxb_addr(rxb);
|
||||
struct il_rx_phy_res *phy_res;
|
||||
__le32 rx_pkt_status;
|
||||
|
|
Загрузка…
Ссылка в новой задаче