diff options
-rw-r--r-- | net/socket.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/socket.c b/net/socket.c index 4ac3b834cce9..8c24d5dc4bc8 100644 --- a/net/socket.c +++ b/net/socket.c | |||
@@ -2690,7 +2690,8 @@ EXPORT_SYMBOL(sock_unregister); | |||
2690 | 2690 | ||
2691 | bool sock_is_registered(int family) | 2691 | bool sock_is_registered(int family) |
2692 | { | 2692 | { |
2693 | return family < NPROTO && rcu_access_pointer(net_families[family]); | 2693 | return family < NPROTO && |
2694 | rcu_access_pointer(net_families[array_index_nospec(family, NPROTO)]); | ||
2694 | } | 2695 | } |
2695 | 2696 | ||
2696 | static int __init sock_init(void) | 2697 | static int __init sock_init(void) |