diff options
| author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-10 23:21:02 +0000 | 
|---|---|---|
| committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-10 23:21:02 +0000 | 
| commit | 23d6020d01056da14d579833d6eb9ce5bc99ca45 (patch) | |
| tree | 898ace10e9239ba98a7284344a58984041fba7b3 | |
| parent | fa628f412ceed872987045897e437f1850d5e91f (diff) | |
mac80211: fix possible NULL pointer dereference in ath9k
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34624 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/mac80211/patches/305-pending-ath9k-allow-to-load-EEPROM-content-via-firmware-API.patch | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/patches/305-pending-ath9k-allow-to-load-EEPROM-content-via-firmware-API.patch b/package/mac80211/patches/305-pending-ath9k-allow-to-load-EEPROM-content-via-firmware-API.patch index 78efdc4e3..d710d099e 100644 --- a/package/mac80211/patches/305-pending-ath9k-allow-to-load-EEPROM-content-via-firmware-API.patch +++ b/package/mac80211/patches/305-pending-ath9k-allow-to-load-EEPROM-content-via-firmware-API.patch @@ -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;  | 
