ipvs: off by one in set_sctp_state()
authorDan Carpenter <[email protected]>
Sat, 20 Apr 2013 11:24:55 +0000 (14:24 +0300)
committerSimon Horman <[email protected]>
Tue, 23 Apr 2013 02:43:06 +0000 (11:43 +0900)
The sctp_events[] come from sch->type in set_sctp_state().  They are
between 0-255 so that means we need 256 elements in the array.

I believe that because of how the code is aligned there is normally a
hole after sctp_events[] so this patch doesn't actually change anything.

Signed-off-by: Dan Carpenter <[email protected]>
Acked-by: Julian Anastasov <[email protected]>
Signed-off-by: Simon Horman <[email protected]>
net/netfilter/ipvs/ip_vs_proto_sctp.c

index 6e14a7b5602f00d64b4b4e5b4d5e9853760832d4..86464881cd20b99d17c371a5bbccfe2efd9b6497 100644 (file)
@@ -208,7 +208,7 @@ enum ipvs_sctp_event_t {
        IP_VS_SCTP_EVE_LAST
 };
 
-static enum ipvs_sctp_event_t sctp_events[255] = {
+static enum ipvs_sctp_event_t sctp_events[256] = {
        IP_VS_SCTP_EVE_DATA_CLI,
        IP_VS_SCTP_EVE_INIT_CLI,
        IP_VS_SCTP_EVE_INIT_ACK_CLI,