From: Philippe Antoine Date: Fri, 18 Apr 2025 12:32:27 +0000 (+0200) Subject: detect: explicitly skip check on SCConfGet X-Git-Tag: suricata-8.0.0-rc1~454 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e301e038ef5fae45c390a3c3a8bedc627d6808d6;p=thirdparty%2Fsuricata.git detect: explicitly skip check on SCConfGet CID: 1644571 --- diff --git a/src/detect-engine.c b/src/detect-engine.c index 22214a4bf0..6a71984201 100644 --- a/src/detect-engine.c +++ b/src/detect-engine.c @@ -2632,7 +2632,7 @@ const char *DetectEngineMpmCachingGetPath(void) char yamlpath[] = "detect.sgh-mpm-caching-path"; const char *strval = NULL; - SCConfGet(yamlpath, &strval); + (void)SCConfGet(yamlpath, &strval); if (strval != NULL) { return strval;