From 54f061537f01d36d0ecac0777fdb12780723eaa0 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 28 Jul 2010 17:38:29 +0200 Subject: [PATCH] "show graph" action: Actively query the selected instance. --- src/action_show_instance.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/action_show_instance.c b/src/action_show_instance.c index 0e1e43c..ab276f7 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,10 @@ static int left_menu (void *user_data) /* {{{ */ } printf ("\n"); + host = NULL; + ident_destroy (ident); + inst_destroy (inst); + return (0); } /* }}} int left_menu */ -- 2.11.0