mac80211: fix possible NULL pointer dereference in ath9k
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34624
This commit is contained in:
parent
aa2dc106c6
commit
51f59a4f53
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
|||
ath_read_cachesize(common, &csz);
|
||||
common->cachelsz = csz << 2; /* convert to bytes */
|
||||
|
||||
+ if (pdata->eeprom_name) {
|
||||
+ if (pdata && pdata->eeprom_name) {
|
||||
+ ret = ath9k_eeprom_request(sc, pdata->eeprom_name);
|
||||
+ if (ret)
|
||||
+ goto err_eeprom;
|
||||
|
|
Loading…
Reference in a new issue