diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-14 14:58:05 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2018-08-11 17:14:58 +0200 |
commit | 0ce1ca805d607cec2c0f75dac8950f40e75fc971 (patch) | |
tree | bf34e7a0084ae76089d43ee7f2c4ca8eeed62c8a /ripd | |
parent | Merge pull request #2809 from opensourcerouting/routemap-rpki-fix (diff) | |
download | frr-0ce1ca805d607cec2c0f75dac8950f40e75fc971.tar.xz frr-0ce1ca805d607cec2c0f75dac8950f40e75fc971.zip |
*: ALLOC calls cannot fail
There is no need to check for failure of a ALLOC call
as that any failure to do so will result in a assert
happening. So we can safely remove all of this code.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/ripd.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ripd/ripd.c b/ripd/ripd.c index 8032cf2ec..e6680ea7d 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -2802,15 +2802,9 @@ DEFUN_NOSH (router_rip, "Enable a routing process\n" "Routing Information Protocol (RIP)\n") { - int ret; - /* If rip is not enabled before. */ if (!rip) { - ret = rip_create(); - if (ret < 0) { - zlog_info("Can't create RIP"); - return CMD_WARNING_CONFIG_FAILED; - } + rip_create(); } VTY_PUSH_CONTEXT(RIP_NODE, rip); |