NFC: st21nfcb: Avoid use of skb after free
Do not insert in send queue the skb that contains unknown Packet Control Byte Acked-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Anda-Maria Nicolae <anda-maria.nicolae@intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
a968639bca
commit
20842466ec
|
@ -138,7 +138,7 @@ static void llt_ndlc_requeue_data_pending(struct llt_ndlc *ndlc)
|
||||||
default:
|
default:
|
||||||
pr_err("UNKNOWN Packet Control Byte=%d\n", pcb);
|
pr_err("UNKNOWN Packet Control Byte=%d\n", pcb);
|
||||||
kfree_skb(skb);
|
kfree_skb(skb);
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
skb_queue_head(&ndlc->send_q, skb);
|
skb_queue_head(&ndlc->send_q, skb);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue