diff options
Diffstat (limited to 'bgpd/bgp_vty.c')
| -rw-r--r-- | bgpd/bgp_vty.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index 2aa4e3ecd4..de24458671 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -14456,8 +14456,7 @@ static int lcommunity_list_set_vty(struct vty *vty, int argc,  	/* Free temporary community list string allocated by  	   argv_concat().  */ -	if (str) -		XFREE(MTYPE_TMP, str); +	XFREE(MTYPE_TMP, str);  	if (ret < 0) {  		community_list_perror(vty, ret); @@ -14508,8 +14507,7 @@ static int lcommunity_list_unset_vty(struct vty *vty, int argc,  	/* Free temporary community list string allocated by  	   argv_concat().  */ -	if (str) -		XFREE(MTYPE_TMP, str); +	XFREE(MTYPE_TMP, str);  	if (ret < 0) {  		community_list_perror(vty, ret);  | 
