From e9dab0ddf930c0beffbbbbdb28325844fb1c7522 Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Thu, 9 Sep 2021 17:31:42 +0800 Subject: [PATCH] regexp: fix startup coredump caused by not increase the config array length --- src/util/inc/tconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/inc/tconfig.h b/src/util/inc/tconfig.h index d03ce6e0f1..8b242806c4 100644 --- a/src/util/inc/tconfig.h +++ b/src/util/inc/tconfig.h @@ -20,7 +20,7 @@ extern "C" { #endif -#define TSDB_CFG_MAX_NUM 116 // 110 + 6 with lossy option +#define TSDB_CFG_MAX_NUM 117 // 110 + 6 with lossy option #define TSDB_CFG_PRINT_LEN 23 #define TSDB_CFG_OPTION_LEN 24 #define TSDB_CFG_VALUE_LEN 41