X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frouteros.c;h=9ea82976d3569e61e62f262b24fc734364bd3b87;hb=8fd8f76dc11064e75e44448d16d35e09e46191a2;hp=fa08b3b08f3e73e62b0af50b1213822cb25336ed;hpb=88bd89f106abd5c0a9f9a80246e31a16c36a3c6d;p=collectd.git diff --git a/src/routeros.c b/src/routeros.c index fa08b3b0..9ea82976 100644 --- a/src/routeros.c +++ b/src/routeros.c @@ -376,18 +376,17 @@ static int cr_config_router(oconfig_item_t *ci) /* {{{ */ } } - snprintf(read_name, sizeof(read_name), "routeros/%s", router_data->node); - if (status == 0) - status = plugin_register_complex_read( - /* group = */ NULL, read_name, cr_read, /* interval = */ 0, - &(user_data_t){ - .data = router_data, .free_func = (void *)cr_free_data, - }); - - if (status != 0) + if (status != 0) { cr_free_data(router_data); + return status; + } - return status; + snprintf(read_name, sizeof(read_name), "routeros/%s", router_data->node); + return plugin_register_complex_read( + /* group = */ NULL, read_name, cr_read, /* interval = */ 0, + &(user_data_t){ + .data = router_data, .free_func = (void *)cr_free_data, + }); } /* }}} int cr_config_router */ static int cr_config(oconfig_item_t *ci) {