]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect: explicitly skip check on SCConfGet
authorPhilippe Antoine <pantoine@oisf.net>
Fri, 18 Apr 2025 12:32:27 +0000 (14:32 +0200)
committerVictor Julien <victor@inliniac.net>
Sat, 19 Apr 2025 08:35:05 +0000 (10:35 +0200)
CID: 1644571

src/detect-engine.c

index 22214a4bf03fa227367429298aa40b61b2a3941d..6a71984201ff8458fbbc2258f1af9bd430c06788 100644 (file)
@@ -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;