diff --git a/fuzz/main.c b/fuzz/main.c index b6aef95c44..cdfe74dfd3 100644 --- a/fuzz/main.c +++ b/fuzz/main.c @@ -99,7 +99,7 @@ int main(int argc, char **argv) UNUSED(argc); UNUSED(argv); - target = target ? target + 1 : argv[0]; + target = (target != NULL) ? target + 1 : argv[0]; if (strncmp(target, "lt-", 3) == 0) { target += 3; }