BUG/MINOR: prevent the dump of uninitialized vars
Some vars are not initialized when the dumps of variables
are called. This patch prevent the dereferencement of
uninitialized pointers.
diff --git a/src/dumpstats.c b/src/dumpstats.c
index 1bb5d88..9dd859f 100644
--- a/src/dumpstats.c
+++ b/src/dumpstats.c
@@ -4107,6 +4107,9 @@
struct appctx *appctx = __objt_appctx(si->end);
struct chunk *out = get_trash_chunk();
+ if (!l->counters)
+ return 0;
+
chunk_reset(out);
memset(&stats, 0, sizeof(stats));