From: Pankaj Gupta Date: Fri, 7 Jun 2024 18:36:11 +0000 (-0500) Subject: i386/sev: Return when sev_common is null X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cd7093a7a168a823d07671348996f049d45e8f67;p=qemu.git i386/sev: Return when sev_common is null Fixes Coverity CID 1546885. Fixes: 16dcf200dc ("i386/sev: Introduce "sev-common" type to encapsulate common SEV state") Signed-off-by: Pankaj Gupta Message-ID: <20240607183611.1111100-4-pankaj.gupta@amd.com> Signed-off-by: Paolo Bonzini --- diff --git a/target/i386/sev.c b/target/i386/sev.c index f18432f58e..c40562dce3 100644 --- a/target/i386/sev.c +++ b/target/i386/sev.c @@ -587,6 +587,7 @@ static SevCapability *sev_get_capabilities(Error **errp) sev_common = SEV_COMMON(MACHINE(qdev_get_machine())->cgs); if (!sev_common) { error_setg(errp, "SEV is not configured"); + return NULL; } sev_device = object_property_get_str(OBJECT(sev_common), "sev-device",