From: Marc-André Lureau Date: Mon, 15 Jul 2024 11:44:20 +0000 (+0400) Subject: vl: fix "type is NULL" in -vga help X-Git-Tag: qemu-xen-4.20.0~72^2~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a99dc9cd611cbaf10edee6260272e299626d0871;p=qemu-xen.git vl: fix "type is NULL" in -vga help Don't pass NULL to module_object_class_by_name(), when the interface is unavailable. Signed-off-by: Marc-André Lureau Reviewed-by: Philippe Mathieu-Daudé Message-ID: <20240715114420.2062870-1-marcandre.lureau@redhat.com> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/system/vl.c b/system/vl.c index bdd2f6ecf6..9e8f16f155 100644 --- a/system/vl.c +++ b/system/vl.c @@ -1000,9 +1000,16 @@ static bool vga_interface_available(VGAInterfaceType t) const VGAInterfaceInfo *ti = &vga_interfaces[t]; assert(t < VGA_TYPE_MAX); - return !ti->class_names[0] || - module_object_class_by_name(ti->class_names[0]) || - module_object_class_by_name(ti->class_names[1]); + + if (!ti->class_names[0] || module_object_class_by_name(ti->class_names[0])) { + return true; + } + + if (ti->class_names[1] && module_object_class_by_name(ti->class_names[1])) { + return true; + } + + return false; } static const char *