Skip to content

Commit

Permalink
staging: rtl8723au: fix static checker warning
Browse files Browse the repository at this point in the history
Fix the following static checker warning:

 drivers/staging/rtl8723au/core/rtw_sta_mgt.c:365 rtw_get_stainfo23a()
 error: potential NULL dereference 'psta'.

Fixes: e280d71("staging: rtl8723au: use list_for_each_entry*()")
Signed-off-by: Geliang Tang <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
geliangtang authored and gregkh committed Mar 12, 2016
1 parent c15cc49 commit 400a30d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/staging/rtl8723au/core/rtw_sta_mgt.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ void rtw_free_all_stainfo23a(struct rtw_adapter *padapter)
struct sta_info *rtw_get_stainfo23a(struct sta_priv *pstapriv, const u8 *hwaddr)
{
struct list_head *phead;
struct sta_info *psta = NULL;
struct sta_info *pos, *psta = NULL;
u32 index;
const u8 *addr;

Expand All @@ -362,7 +362,9 @@ struct sta_info *rtw_get_stainfo23a(struct sta_priv *pstapriv, const u8 *hwaddr)

spin_lock_bh(&pstapriv->sta_hash_lock);
phead = &pstapriv->sta_hash[index];
list_for_each_entry(psta, phead, hash_list) {
list_for_each_entry(pos, phead, hash_list) {
psta = pos;

/* if found the matched address */
if (ether_addr_equal(psta->hwaddr, addr))
break;
Expand Down

0 comments on commit 400a30d

Please sign in to comment.