diff options
author | Paul Jakma <paul.jakma@sun.com> | 2006-05-08 14:25:09 +0000 |
---|---|---|
committer | Paul Jakma <paul.jakma@sun.com> | 2006-05-08 14:25:09 +0000 |
commit | 542bcb724c410283d7a3f317c8fe5e8a0b58f196 (patch) | |
tree | cefe67e9b39990827c64fda884adeda208af9787 /bgpd/bgp_community.c | |
parent | 65ca75e0d1e7e440bf0d2a6a031d4148024c9d12 (diff) |
[bgpd] CID#62 fix double-free, use-after-free in community_str2com
2006-05-08 Paul Jakma <paul.jakma@sun.com>
* bgp_community.c: (community_str2com) Coverity CID#62, fix
double-free, use-after-free.
Diffstat (limited to 'bgpd/bgp_community.c')
-rw-r--r-- | bgpd/bgp_community.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_community.c b/bgpd/bgp_community.c index b419a203..07b8cf81 100644 --- a/bgpd/bgp_community.c +++ b/bgpd/bgp_community.c @@ -596,7 +596,7 @@ community_str2com (const char *str) default: if (com) community_free (com); - break; + return NULL; } } while (str); |