[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1619691589-4776-1-git-send-email-wangyunjian@huawei.com>
Date: Thu, 29 Apr 2021 18:19:49 +0800
From: wangyunjian <wangyunjian@...wei.com>
To: <kuba@...nel.org>, <davem@...emloft.net>
CC: <vyasevich@...il.com>, <nhorman@...driver.com>,
<marcelo.leitner@...il.com>, <linux-sctp@...r.kernel.org>,
<netdev@...r.kernel.org>, <dingxiaoxiong@...wei.com>,
Yunjian Wang <wangyunjian@...wei.com>
Subject: [PATCH net-next] sctp: Remove redundant skb_list null check
From: Yunjian Wang <wangyunjian@...wei.com>
The skb_list cannot be NULL here since its already being accessed
before. Remove the redundant null check.
Signed-off-by: Yunjian Wang <wangyunjian@...wei.com>
---
net/sctp/ulpqueue.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c
index 407fed46931b..6f3685f0e700 100644
--- a/net/sctp/ulpqueue.c
+++ b/net/sctp/ulpqueue.c
@@ -259,10 +259,7 @@ int sctp_ulpq_tail_event(struct sctp_ulpq *ulpq, struct sk_buff_head *skb_list)
return 1;
out_free:
- if (skb_list)
- sctp_queue_purge_ulpevents(skb_list);
- else
- sctp_ulpevent_free(event);
+ sctp_queue_purge_ulpevents(skb_list);
return 0;
}
--
2.23.0
Powered by blists - more mailing lists