mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2024-11-22 21:34:37 +00:00
Protect against pfhdr NULL
This commit is contained in:
parent
dcad331843
commit
dec5aaf128
@ -2695,6 +2695,10 @@ union recv_frame *recvframe_defrag(_adapter *adapter, _queue *defrag_q)
|
|||||||
plist = get_next(phead);
|
plist = get_next(phead);
|
||||||
prframe = LIST_CONTAINOR(plist, union recv_frame, u);
|
prframe = LIST_CONTAINOR(plist, union recv_frame, u);
|
||||||
pfhdr = &prframe->u.hdr;
|
pfhdr = &prframe->u.hdr;
|
||||||
|
if (!pfhdr) {
|
||||||
|
pr_err("pfhdr NULL in %s\n", __func__);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
rtw_list_delete(&(prframe->u.list));
|
rtw_list_delete(&(prframe->u.list));
|
||||||
|
|
||||||
if (curfragnum != pfhdr->attrib.frag_num) {
|
if (curfragnum != pfhdr->attrib.frag_num) {
|
||||||
|
Loading…
Reference in New Issue
Block a user