From 290c1ea73374177db42490da9ef7cf01a6f705ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 20 Dec 2019 13:43:15 +0100 Subject: [PATCH] vbox: Get rid of "no_memory" labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As pointed out by Ján Tomko, "no_memory seems suspicious in the times of abort()". As libvirt decided to take the path to not report OOM and simply abort when it happens, let's get rid of the no_memory labels and simplify the code around them. Reviewed-by: Cole Robinson Signed-off-by: Fabiano Fidêncio --- src/vbox/vbox_common.c | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/vbox/vbox_common.c b/src/vbox/vbox_common.c index 4493fe8582..fc67b716da 100644 --- a/src/vbox/vbox_common.c +++ b/src/vbox/vbox_common.c @@ -69,18 +69,18 @@ static virDomainDefParserConfig vboxDomainDefParserConfig = { static virCapsPtr vboxCapsInit(void) { - virCapsPtr caps; - virCapsGuestPtr guest; + g_autoptr(virCaps) caps = NULL; + virCapsGuestPtr guest = NULL; if ((caps = virCapabilitiesNew(virArchFromHost(), false, false)) == NULL) - goto no_memory; + return NULL; if (!(caps->host.numa = virCapabilitiesHostNUMANewHost())) - goto no_memory; + return NULL; if (virCapabilitiesInitCaches(caps) < 0) - goto no_memory; + return NULL; if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM, @@ -89,7 +89,7 @@ vboxCapsInit(void) NULL, 0, NULL)) == NULL) - goto no_memory; + return NULL; if (virCapabilitiesAddGuestDomain(guest, VIR_DOMAIN_VIRT_VBOX, @@ -97,13 +97,9 @@ vboxCapsInit(void) NULL, 0, NULL) == NULL) - goto no_memory; + return NULL; - return caps; - - no_memory: - virObjectUnref(caps); - return NULL; + return g_steal_pointer(&caps); } static void