X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Faction_show_instance.c;h=bb807a62af026b2a1af4a7bc8bf298a3ae5e34c8;hb=99b10b920e1e1687003edaf1f882d14b08bcd70c;hp=0e1e43c9c79875bfe1699cab4c0dc07242dba7f0;hpb=ec060bd3831805d241bcd00d4d09b59ec8b10c26;p=collection4.git diff --git a/src/action_show_instance.c b/src/action_show_instance.c index 0e1e43c..bb807a6 100644 --- a/src/action_show_instance.c +++ b/src/action_show_instance.c @@ -146,6 +146,7 @@ static int left_menu (void *user_data) /* {{{ */ { show_graph_data_t *data = user_data; char params[1024]; + graph_instance_t *inst; graph_ident_t *ident; const char *host; @@ -153,7 +154,8 @@ static int left_menu (void *user_data) /* {{{ */ graph_get_params (data->cfg, params, sizeof (params)); html_escape_buffer (params, sizeof (params)); - ident = inst_get_selector (data->inst); + inst = inst_get_selected (data->cfg); + ident = inst_get_selector (inst); host = ident_get_host (ident); if (IS_ANY (host)) host = NULL; @@ -176,6 +178,9 @@ static int left_menu (void *user_data) /* {{{ */ } printf ("\n"); + host = NULL; + ident_destroy (ident); + return (0); } /* }}} int left_menu */