iwlwifi: initialize rx_status
authorJohannes Berg <[email protected]>
Fri, 23 Nov 2012 22:46:19 +0000 (23:46 +0100)
committerJohn W. Linville <[email protected]>
Mon, 26 Nov 2012 19:54:21 +0000 (14:54 -0500)
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.

Reviewed-by: Emmanuel Grumbach <[email protected]>
Signed-off-by: Johannes Berg <[email protected]>
Tested-by: Kalle Valo <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
drivers/net/wireless/iwlwifi/dvm/rx.c

index f95b96c47cc41611e52c97d7d871633c34000f9d..cac4f37cc427531871049d775a6fba7f315638a8 100644 (file)
@@ -899,7 +899,7 @@ static int iwlagn_rx_reply_rx(struct iwl_priv *priv,
                            struct iwl_device_cmd *cmd)
 {
        struct ieee80211_hdr *header;
-       struct ieee80211_rx_status rx_status;
+       struct ieee80211_rx_status rx_status = {};
        struct iwl_rx_packet *pkt = rxb_addr(rxb);
        struct iwl_rx_phy_res *phy_res;
        __le32 rx_pkt_status;