From be7cea4d32ee4514ca53556387c0570a9fbc1105 Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Sun, 17 Nov 2024 19:45:25 +0100 Subject: [PATCH] suricata: fix list-keywords option The list keywords option was crashing due to improper init. Ticket: 7397 --- src/util-running-modes.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util-running-modes.c b/src/util-running-modes.c index dd50c85ab4..02aeefece8 100644 --- a/src/util-running-modes.c +++ b/src/util-running-modes.c @@ -36,6 +36,7 @@ int ListKeywords(const char *keyword_info) MpmTableSetup(); SpmTableSetup(); AppLayerSetup(); + SigTableInit(); SigTableSetup(); /* load the rule keywords */ return SigTableList(keyword_info); } -- 2.47.2