diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/sctp/chunk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sctp/chunk.c b/net/sctp/chunk.c index ed857643e3ff..1748ef90950c 100644 --- a/net/sctp/chunk.c +++ b/net/sctp/chunk.c | |||
@@ -66,9 +66,10 @@ SCTP_STATIC struct sctp_datamsg *sctp_datamsg_new(gfp_t gfp) | |||
66 | { | 66 | { |
67 | struct sctp_datamsg *msg; | 67 | struct sctp_datamsg *msg; |
68 | msg = kmalloc(sizeof(struct sctp_datamsg), gfp); | 68 | msg = kmalloc(sizeof(struct sctp_datamsg), gfp); |
69 | if (msg) | 69 | if (msg) { |
70 | sctp_datamsg_init(msg); | 70 | sctp_datamsg_init(msg); |
71 | SCTP_DBG_OBJCNT_INC(datamsg); | 71 | SCTP_DBG_OBJCNT_INC(datamsg); |
72 | } | ||
72 | return msg; | 73 | return msg; |
73 | } | 74 | } |
74 | 75 | ||