mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-09 23:19:39 +00:00
rtl8188eu: Fix a possible NUMM dereference
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
0ebfaa07e4
commit
324b62c685
1 changed files with 3 additions and 1 deletions
|
@ -955,7 +955,9 @@ s32 rtw_txframes_sta_ac_pending(struct adapter *padapter, struct pkt_attrib *pat
|
|||
break;
|
||||
}
|
||||
|
||||
return ptxservq->qcnt;
|
||||
if (ptxservq)
|
||||
return ptxservq->qcnt;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue