diff options
| author | anlan_cs <vic.lan@pica8.com> | 2022-08-17 03:26:24 -0400 | 
|---|---|---|
| committer | anlan_cs <vic.lan@pica8.com> | 2023-07-12 17:00:27 +0800 | 
| commit | f8d94e8a628d123f299a4f388c58c8f8b222c6c2 (patch) | |
| tree | 5bc78db1aa7239b0baaf906c7389cee8bc2bd208 /zebra/zapi_msg.c | |
| parent | 30f511e63ac853465be7114322282fb5d833fa0c (diff) | |
zebra: remove unnecessary check for default vrf
The default vrf is generally non-NULL, except when shutdown. So, most
of the time it is not necessary to check if it is NULL, we should
remove the useless checks for it.
Searched them with exact match:
```
grep -rI "zebra_vrf_lookup_by_id(VRF_DEFAULT)" | wc -l
31
```
Signed-off-by: anlan_cs <vic.lan@pica8.com>
Diffstat (limited to 'zebra/zapi_msg.c')
| -rw-r--r-- | zebra/zapi_msg.c | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c index 5ac8754058..6a5b0b4a0e 100644 --- a/zebra/zapi_msg.c +++ b/zebra/zapi_msg.c @@ -1337,8 +1337,6 @@ static void zread_fec_register(ZAPI_HANDLER_ARGS)  	s = msg;  	zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT); -	if (!zvrf) -		return;  	/*  	 * The minimum amount of data that can be sent for one fec @@ -1400,8 +1398,6 @@ static void zread_fec_unregister(ZAPI_HANDLER_ARGS)  	s = msg;  	zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT); -	if (!zvrf) -		return;  	/*  	 * The minimum amount of data that can be sent for one  | 
