Fix: test_utils_expand_path passes NULL to sprintf
[lttng-tools.git] / tests / unit / test_utils_expand_path.c
index 44173f6f023e2c18ae8eb848ef15965c0978ca7c..aa7984b4026b38e4385f11d26b07545444c9bb1c 100644 (file)
@@ -26,8 +26,7 @@
 
 #include <tap/tap.h>
 
-#include <src/common/utils.h>
-
+#include <common/utils.h>
 #include <common/common.h>
 
 /* For error.h */
@@ -312,9 +311,12 @@ static void test_utils_expand_path(void)
 
        /* Test invalid cases */
        for (i = 0; i < num_invalid_tests; i++) {
-               sprintf(name, "invalid test case: %s", invalid_tests_inputs[i]);
+               const char *test_input = invalid_tests_inputs[i];
+
+               sprintf(name, "invalid test case: %s", test_input ?
+                               test_input : "NULL");
 
-               result = utils_expand_path(invalid_tests_inputs[i]);
+               result = utils_expand_path(test_input);
                if (result != NULL) {
                        free(result);
                }
This page took 0.023256 seconds and 4 git commands to generate.