Browse Source

Silence compiler warnings about out of array bounds indexes

struct wpa_ie_hdr had separate fields for 24-bit OUI and 8-bit oui_type
for WPA/RSN selectors. {WPA,RSN}_SELECTOR_{GET,PUT} access these four
octets through oui and the "out-of-bounds" access for the fourth octet is
actually reading/writing oui_type. This works fine, but some tools complain
about the array bounds "failure". Since oui_type is never accessed
separately, the simplest fix is to just combine these into a single 4-octet
field.
Jouni Malinen 17 years ago
parent
commit
4fba48a5a7
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/common/wpa_common.h

+ 1 - 2
src/common/wpa_common.h

@@ -188,8 +188,7 @@ struct wpa_ptk {
 struct wpa_ie_hdr {
 	u8 elem_id;
 	u8 len;
-	u8 oui[3];
-	u8 oui_type;
+	u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */
 	u8 version[2]; /* little endian */
 } STRUCT_PACKED;