mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
crypto: chtls - dereference null variable
skb dereferenced before check in sendpage Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Atul Gupta <atul.gupta@chelsio.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
3b8305f5c8
commit
ea5213b0da
@ -1230,9 +1230,8 @@ int chtls_sendpage(struct sock *sk, struct page *page,
|
||||
struct sk_buff *skb = skb_peek_tail(&csk->txq);
|
||||
int copy, i;
|
||||
|
||||
copy = mss - skb->len;
|
||||
if (!skb || (ULP_SKB_CB(skb)->flags & ULPCB_FLAG_NO_APPEND) ||
|
||||
copy <= 0) {
|
||||
(copy = mss - skb->len) <= 0) {
|
||||
new_buf:
|
||||
if (!csk_mem_free(cdev, sk))
|
||||
goto wait_for_sndbuf;
|
||||
|
Loading…
Reference in New Issue
Block a user