diff mbox series

[3/4] vl: Remove useless test in configure_accelerators

Message ID 20200109021710.1219-4-richard.henderson@linaro.org
State Accepted
Commit a024b0906779e4355b6d04f67c01d1bc0dcc2699
Headers show
Series vl: Fixes for cleanups to -accel | expand

Commit Message

Richard Henderson Jan. 9, 2020, 2:17 a.m. UTC
The result of g_strsplit is never NULL.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

---
 vl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.20.1
diff mbox series

Patch

diff --git a/vl.c b/vl.c
index c9329fe699..887dbfbb5d 100644
--- a/vl.c
+++ b/vl.c
@@ -2776,7 +2776,7 @@  static void configure_accelerators(const char *progname)
 
         accel_list = g_strsplit(accel, ":", 0);
 
-        for (tmp = accel_list; tmp && *tmp; tmp++) {
+        for (tmp = accel_list; *tmp; tmp++) {
             /*
              * Filter invalid accelerators here, to prevent obscenities
              * such as "-machine accel=tcg,,thread=single".