mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
vl: Remove useless test in configure_accelerators
The result of g_strsplit is never NULL. Acked-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@@ -2783,7 +2783,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".
|
||||
|
||||
Reference in New Issue
Block a user