diff options
| -rw-r--r-- | sys/security/mac/mac_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/security/mac/mac_net.c b/sys/security/mac/mac_net.c index 79503930c0d2..5773b4e9d4e4 100644 --- a/sys/security/mac/mac_net.c +++ b/sys/security/mac/mac_net.c @@ -234,7 +234,7 @@ mac_socket_label_alloc(int flag) if (error) { MAC_PERFORM(destroy_socket_label, label); mac_labelzone_free(label); - return (NULL); + return (NULL); } MAC_DEBUG_COUNTER_INC(&nmacsockets); return (label); @@ -254,7 +254,7 @@ mac_socket_peer_label_alloc(int flag) if (error) { MAC_PERFORM(destroy_socket_peer_label, label); mac_labelzone_free(label); - return (NULL); + return (NULL); } MAC_DEBUG_COUNTER_INC(&nmacsockets); return (label); |
