aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/ulpqueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sctp/ulpqueue.c')
-rw-r--r--net/sctp/ulpqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c
index 5dde92101743..0fecc1fb4ab7 100644
--- a/net/sctp/ulpqueue.c
+++ b/net/sctp/ulpqueue.c
@@ -745,7 +745,7 @@ static void sctp_ulpq_reasm_drain(struct sctp_ulpq *ulpq)
745 745
746 while ((event = sctp_ulpq_retrieve_reassembled(ulpq)) != NULL) { 746 while ((event = sctp_ulpq_retrieve_reassembled(ulpq)) != NULL) {
747 /* Do ordering if needed. */ 747 /* Do ordering if needed. */
748 if ((event) && (event->msg_flags & MSG_EOR)) { 748 if (event->msg_flags & MSG_EOR) {
749 skb_queue_head_init(&temp); 749 skb_queue_head_init(&temp);
750 __skb_queue_tail(&temp, sctp_event2skb(event)); 750 __skb_queue_tail(&temp, sctp_event2skb(event));
751 751