ip6-nd: fix coverity warning

Add a missing return statement in case there are no parameters supplied
to 'set ip6 nd proxy' CLI to avoid calling code with uninitialised
parameters.

Type: fix
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: Ie4fdb4df5d1af49471c421e5e7a6c2f885d2e8d2
This commit is contained in:
Klement Sekera
2021-10-13 22:29:49 +02:00
committed by Andrew Yourtchenko
parent a0f55c9ce9
commit 4450b03ba2

View File

@ -107,6 +107,10 @@ set_ip6_nd_proxy_cmd (vlib_main_t * vm,
return (unformat_parse_error (input));
}
}
else
{
return error;
}
ip6_nd_proxy_add_del (sw_if_index, &addr, is_del);