diff options
Diffstat (limited to 'net/sctp/sm_statefuns.c')
-rw-r--r-- | net/sctp/sm_statefuns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index 174acc3c5526..c5362638d672 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
@@ -5105,6 +5105,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc | |||
5105 | __u16 sport; | 5105 | __u16 sport; |
5106 | __u16 dport; | 5106 | __u16 dport; |
5107 | __u32 vtag; | 5107 | __u32 vtag; |
5108 | union sctp_addr tmp; | ||
5108 | 5109 | ||
5109 | /* Get the source and destination port from the inbound packet. */ | 5110 | /* Get the source and destination port from the inbound packet. */ |
5110 | sport = ntohs(chunk->sctp_hdr->dest); | 5111 | sport = ntohs(chunk->sctp_hdr->dest); |
@@ -5135,7 +5136,8 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc | |||
5135 | } | 5136 | } |
5136 | 5137 | ||
5137 | /* Make a transport for the bucket, Eliza... */ | 5138 | /* Make a transport for the bucket, Eliza... */ |
5138 | transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC); | 5139 | flip_to_n(&tmp, sctp_source(chunk)); |
5140 | transport = sctp_transport_new(&tmp, GFP_ATOMIC); | ||
5139 | if (!transport) | 5141 | if (!transport) |
5140 | goto nomem; | 5142 | goto nomem; |
5141 | 5143 | ||