diff options
author | johny <jan.cavojsky@pantheon.tech> | 2019-12-06 13:58:35 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-12-08 19:02:11 +0000 |
commit | a633a4318bea2f9edcb80d9685b0f811cac679ea (patch) | |
tree | beb57e8b6244afbb80974977e39c3f9ba9011567 /src/vnet | |
parent | ebef4a9e5dcdf764e856a6d6b61ef22f546abb1d (diff) |
ip: coverity fix
Delete Null-checking "p0" in function ip6_tcp_udp_icmp_bad_length,
because it's not necessary.
Type: fix
Signed-off-by: johny <jan.cavojsky@pantheon.tech>
Change-Id: I2bf43a60c1c1d76e42581df27f2285c9e9563093
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ip/ip6_forward.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/vnet/ip/ip6_forward.c b/src/vnet/ip/ip6_forward.c index 959ff890f73..128204f2c2e 100644 --- a/src/vnet/ip/ip6_forward.c +++ b/src/vnet/ip/ip6_forward.c @@ -1161,15 +1161,13 @@ ip6_tcp_udp_icmp_bad_length (vlib_main_t * vm, vlib_buffer_t * p0) payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length); n_bytes_left = n_this_buffer = payload_length_host_byte_order; - if (p0) + + u32 n_ip_bytes_this_buffer = + p0->current_length - (((u8 *) ip0 - p0->data) - p0->current_data); + if (n_this_buffer + headers_size > n_ip_bytes_this_buffer) { - u32 n_ip_bytes_this_buffer = - p0->current_length - (((u8 *) ip0 - p0->data) - p0->current_data); - if (n_this_buffer + headers_size > n_ip_bytes_this_buffer) - { - n_this_buffer = p0->current_length > headers_size ? - n_ip_bytes_this_buffer - headers_size : 0; - } + n_this_buffer = p0->current_length > headers_size ? + n_ip_bytes_this_buffer - headers_size : 0; } n_bytes_left -= n_this_buffer; |