luci-0.10: merge r7334

This commit is contained in:
Jo-Philipp Wich 2011-07-22 14:50:26 +00:00
parent 072f01704d
commit cd0b0fbedf

View file

@ -1438,7 +1438,7 @@ int nl80211_get_freqlist(const char *ifname, char *buf, int *len)
if( req ) if( req )
{ {
res = nl80211_send(req); res = nl80211_send(req);
if( res ) if( res && res->attr[NL80211_ATTR_WIPHY_BANDS] )
{ {
nla_for_each_nested(band, nla_for_each_nested(band,
res->attr[NL80211_ATTR_WIPHY_BANDS], bands_remain) res->attr[NL80211_ATTR_WIPHY_BANDS], bands_remain)
@ -1537,7 +1537,7 @@ int nl80211_get_hwmodelist(const char *ifname, int *buf)
if( req ) if( req )
{ {
res = nl80211_send(req); res = nl80211_send(req);
if( res ) if( res && res->attr[NL80211_ATTR_WIPHY_BANDS] )
{ {
nla_for_each_nested(band, nla_for_each_nested(band,
res->attr[NL80211_ATTR_WIPHY_BANDS], bands_remain) res->attr[NL80211_ATTR_WIPHY_BANDS], bands_remain)