diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2011-08-11 04:46:22 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-08-11 14:23:06 -0400 |
commit | f612cedfe152b536197c0120f2e7779bc90219d0 (patch) | |
tree | c1ad3b3a00a26eff4b78d81331c168faf901a4ba /include/net/cfg80211.h | |
parent | 040bdf713d2bec8235f1af705e2d13da5d9baec8 (diff) |
nl80211/cfg80211: Make addition of new sinfo fields safer
Add a comment pointing out the use of enum station_info_flags for
all new struct station_info fields. In addition, memset the sinfo
buffer to zero before use on all paths in the current tree to avoid
leaving uninitialized pointers in the data.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 96876d366c6a..ab1244075925 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -563,6 +563,11 @@ struct station_info { | |||
563 | 563 | ||
564 | const u8 *assoc_req_ies; | 564 | const u8 *assoc_req_ies; |
565 | size_t assoc_req_ies_len; | 565 | size_t assoc_req_ies_len; |
566 | |||
567 | /* | ||
568 | * Note: Add a new enum station_info_flags value for each new field and | ||
569 | * use it to check which fields are initialized. | ||
570 | */ | ||
566 | }; | 571 | }; |
567 | 572 | ||
568 | /** | 573 | /** |