From: Willy Tarreau Date: Mon, 4 May 2015 16:07:56 +0000 (+0200) Subject: BUG/MEDIUM: stats: properly initialize the scope before dumping stats X-Git-Tag: v1.6-dev2~139 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bcb95da5b9cb143088102b460c7bcb37c1b3d81;p=thirdparty%2Fhaproxy.git BUG/MEDIUM: stats: properly initialize the scope before dumping stats Issuing a "show sess all" prior to a "show stat" on the CLI results in no proxy being dumped because the scope_len union member was not properly reinitialized. This fix must be backported into 1.5. --- diff --git a/src/dumpstats.c b/src/dumpstats.c index b8e822ff52..35391ae0df 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -1090,6 +1090,8 @@ static int stats_sock_parse_request(struct stream_interface *si, char *line) arg++; } + appctx->ctx.stats.scope_str = 0; + appctx->ctx.stats.scope_len = 0; appctx->ctx.stats.flags = 0; if (strcmp(args[0], "show") == 0) { if (strcmp(args[1], "stat") == 0) {