Browse Source

mac80211: fix possible NULL pointer dereference in ath9k

Signed-off-by: Gabor Juhos <[email protected]>

SVN-Revision: 34624
Gabor Juhos 13 years ago
parent
commit
51f59a4f53

+ 1 - 1
package/mac80211/patches/305-pending-ath9k-allow-to-load-EEPROM-content-via-firmware-API.patch

@@ -144,7 +144,7 @@ Signed-off-by: Gabor Juhos <[email protected]>
  	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;