qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 3/4] vl: Remove useless test in configure_accelerators
Date: Thu, 9 Jan 2020 13:24:44 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2

On 1/9/20 3:17 AM, Richard Henderson wrote:
The result of g_strsplit is never NULL.

Signed-off-by: Richard Henderson <address@hidden>
---
  vl.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

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".


Reviewed-by: Philippe Mathieu-Daudé <address@hidden>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]