test: remove a superfluous string-is-null check
authorPeter Hutterer <peter.hutterer@who-t.net>
Tue, 5 Nov 2019 03:33:11 +0000 (13:33 +1000)
committerRan Benita <ran234@gmail.com>
Thu, 7 Nov 2019 09:10:00 +0000 (11:10 +0200)
A few lines above we check path_rel[0], so any null pointer will blow up
before we get here.

Found by coverity

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
test/common.c

index fbe72a7..f989818 100644 (file)
@@ -165,7 +165,7 @@ test_get_path(const char *path_rel)
         return strdup(path_rel);
 
     path_len = strlen(srcdir ? srcdir : ".") +
-               strlen(path_rel ? path_rel : "") + 12;
+               strlen(path_rel) + 12;
     path = malloc(path_len);
     if (!path) {
         fprintf(stderr, "Failed to allocate path (%d chars) for %s\n",