Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Merge pull request #44 from dm0-/v4.9.9-coreos
Browse files Browse the repository at this point in the history
Apply CVE fix for alpha
  • Loading branch information
dm0- authored Feb 22, 2017
2 parents 38bd55a + 72a6292 commit b00ec6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/dccp/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@ int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
if (inet_csk(sk)->icsk_af_ops->conn_request(sk,
skb) < 0)
return 1;
goto discard;
consume_skb(skb);
return 0;
}
if (dh->dccph_type == DCCP_PKT_RESET)
goto discard;
Expand Down

0 comments on commit b00ec6c

Please sign in to comment.