1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00
linux/drivers/net/wireless/intersil/hostap
Arnd Bergmann 48dc5fb3ba hostap: avoid uninitialized variable use in hfa384x_get_rid
The driver reads a value from hfa384x_from_bap(), which may fail,
and then assigns the value to a local variable. gcc detects that
in in the failure case, the 'rlen' variable now contains
uninitialized data:

In file included from ../drivers/net/wireless/intersil/hostap/hostap_pci.c:220:0:
drivers/net/wireless/intersil/hostap/hostap_hw.c: In function 'hfa384x_get_rid':
drivers/net/wireless/intersil/hostap/hostap_hw.c:842:5: warning: 'rec' may be used uninitialized in this function [-Wmaybe-uninitialized]
  if (le16_to_cpu(rec.len) == 0) {

This restructures the function as suggested by Russell King, to
make it more readable and get more reliable error handling, by
handling each failure mode using a goto.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
2016-02-06 13:59:24 +02:00
..
hostap.h hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_80211.h hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_80211_rx.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_80211_tx.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_ap.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_ap.h hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_common.h hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_config.h hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_cs.c hostap: fix an error code in prism2_config() 2015-12-11 13:22:04 +02:00
hostap_download.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_hw.c hostap: avoid uninitialized variable use in hfa384x_get_rid 2016-02-06 13:59:24 +02:00
hostap_info.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_ioctl.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_main.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_pci.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_plx.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_proc.c hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
hostap_wlan.h hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
Kconfig hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00
Makefile hostap: move under intersil vendor directory 2015-11-18 14:28:30 +02:00